smoothie

Smoothie Charts: smooooooth JavaScript charts for realtime streaming data

Github星跟蹤圖

npm version

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.

See http://smoothiecharts.org


Getting Started


Example

Given a <canvas>:

<canvas id="chart" width="400" height="100"></canvas>

Create a time series and chart with code resembling:

// Create a time series
var series = new TimeSeries();

// Find the canvas
var canvas = document.getElementById('chart');

// Create the chart
var chart = new SmoothieChart();
chart.addTimeSeries(series, { strokeStyle: 'rgba(0, 255, 0, 1)' });
chart.streamTo(canvas, 500);

Then, add data to your time series and it will be displayed on the chart:

// Randomly add a data point every 500ms
setInterval(function() {
    series.append(Date.now(), Math.random() * 10000);
}, 500);

Questions

For help, use the Smoothie Charts Google Group.


License (MIT)

主要指標

概覽
名稱與所有者joewalnes/smoothie
主編程語言JavaScript
編程語言JavaScript (語言數: 2)
平台
許可證Other
所有者活动
創建於2010-08-10 09:54:54
推送於2023-01-08 10:09:30
最后一次提交2023-01-08 14:05:37
發布數55
最新版本名稱1.36.1 (發布於 )
第一版名稱v1.2 (發布於 )
用户参与
星數2.3k
關注者數68
派生數233
提交數318
已啟用問題?
問題數77
打開的問題數19
拉請求數55
打開的拉請求數9
關閉的拉請求數13
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?