Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.59 KB

README.md

File metadata and controls

51 lines (35 loc) · 1.59 KB

Smoothie Charts

Smoothie Charts is a really small charting library designed for live streaming data. I built it to reduce the headaches I was getting from watching charts jerkily updating every second. What you're looking at now is pretty much all it does. If you like that, then read on.

See http://smoothiecharts.org

Installation

Use component:

$ component-install microjs/smoothie

You can then load it:

ES6:

let {TimeSeries, SmoothieChart} = require('smoothie');

ES5:

var TimeSeries = require('smoothie').TimeSeries;
var SmoothieChart = require('smoothie').SmoothieChart;

Getting Started

For help, use the Smoothie Charts Google Group.

License (MIT)