Simple, css-only plotting.
- No javascript required
- Easy-to-use
- Responsive
Check asciimoo.github.io/cssplot for demo.
<link media="all" rel="stylesheet" type="text/css" href="/build/cssplot.full.css" />Alternatively cssplot.base.css can be used alone with the following modifications:
- Bar chart: use
class="chart-column" style="height: 99.0%"instead ofdata-cp-size="99" - Vertical bar chart: use
class="chart-row" style="width: 99.0%"instead ofdata-cp-size="99" - Scatter plot: use
class="chart-dot" style="left: 20.0%; bottom: 10.0%"instead ofdata-cp-x="20" data-cp-y="10"
<div class="bar-chart">
<ul class="plot-container">
<li data-cp-size="99">99%</li>
<li data-cp-size="50">50%</li>
<li data-cp-size="30">30%</li>
<li data-cp-size="90">90%</li>
<li data-cp-size="10">10%</li>
<li data-cp-size="70">70%</li>
<li data-cp-size="30">30%</li>
<li data-cp-size="90">90%</li>
</ul>
</div><div class="vertical-chart">
<ul class="plot-container">
<li data-cp-size="100">100%</li>
<li data-cp-size="30">30%</li>
<li data-cp-size="20">20%</li>
<li data-cp-size="70">70%</li>
<li data-cp-size="90">90%</li>
</ul>
</div><div class="scatter-plot">
<ul class="plot-container">
<li data-cp-x="50" data-cp-y="30">a</li>
<li data-cp-x="30" data-cp-y="20">b</li>
<li data-cp-x="10" data-cp-y="5">c</li>
<li data-cp-x="11" data-cp-y="10">d</li>
<li data-cp-x="12" data-cp-y="20">e</li>
<li data-cp-x="13" data-cp-y="30">f</li>
<li data-cp-x="0" data-cp-y="0">h</li>
<li data-cp-x="100" data-cp-y="100">i</li>
</ul>
</div>For animated charts, add the data-cp-transition attribute to the plot-container; the values are: fade and grow and they're the two types of animation availables. Then, each point in the graph must have the data-cp-delay attribute with a value that must be a number higher than zero and represents the delay of the animation (in miliseconds).
<div class="bar-plot">
<ul class="plot-container" data-cp-transition="0.3">
<li data-cp-delay="1" data-cp-size="1"></li>
<li data-cp-delay="2" data-cp-size="2"></li>
<li data-cp-delay="3" data-cp-size="4"></li>
<li data-cp-delay="4" data-cp-size="8"></li>
<li data-cp-delay="5" data-cp-size="16"></li>
</ul>
</div>Using GruntJS.
Clone this repo and install dependencies:
$ npm install
Then run:
$ grunt
It will keep watching your changes while you save them and if you have Livereload extension your browser will refresh each time you save your .less file.
- Pie chart
- Stacked bar chart
- Line chart
- Axis/scale support
- Live demo
- Better build script
- Animated charts


