typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
33 lines (24 loc) • 723 B
text/typescript
/// <reference path="smoothie.d.ts" />
// Smoothie supports browserify
import smoothie = require('smoothie');
var canvas: HTMLCanvasElement = document.createElement('canvas');
document.body.appendChild(canvas);
var series: smoothie.TimeSeries = new smoothie.TimeSeries(),
chart: smoothie.SmoothieChart = new smoothie.SmoothieChart({
grid : {
strokeStyle : '#404040'
},
maxValue : 1,
minValue : 0
});
chart.addTimeSeries(series, {
strokeStyle : '#FFFFFF',
fillStyle : 'rgba(64, 64, 64, 0.25)',
lineWidth : 2
});
var DELAY: number = 500;
chart.streamTo(canvas, DELAY);
chart.addTimeSeries(series);
setInterval(() =>
series.append(Date.now(), Math.random()),
DELAY);