blob: 6576f7544247170f3435fef241e2d7678d074050 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/webui/static/js/smoothie.js"></script>
<script type="text/javascript"></script>
</head>
<body>
<canvas id="chart" width="400" height="100"></canvas>
<script type="text/javascript">
// Random data
var feedSeries = new TimeSeries();
setInterval(function() {
line1.append(new Date().getTime(), Math.random());
line2.append(new Date().getTime(), Math.random());
}, 1000);
var smoothie = new SmoothieChart({ grid: { strokeStyle: 'rgb(125, 0, 0)', fillStyle: 'rgb(60, 0, 0)', lineWidth: 1, millisPerLine: 250, verticalSections: 6 } });
smoothie.addTimeSeries(line1, { strokeStyle: 'rgb(0, 255, 0)', fillStyle: 'rgba(0, 255, 0, 0.4)', lineWidth: 3 });
smoothie.addTimeSeries(line2, { strokeStyle: 'rgb(255, 0, 255)', fillStyle: 'rgba(255, 0, 255, 0.3)', lineWidth: 3 });
smoothie.streamTo(document.getElementById("mycanvas"), 1000);
</script>
</body>
</html>