blob: 72d996d965223e3157cf91d1050c377f879f8038 [file] [log] [blame]
ramangrover29a04696c2013-07-31 21:50:38 -07001<html>
2 <head>
3 <script type="text/javascript" src="/webui/static/js/smoothie.js"></script>
ramangrover29a04696c2013-07-31 21:50:38 -07004 <script type="text/javascript">
5
ramangrover29c996e282013-08-03 14:36:45 -07006 var random = new TimeSeries();
7 setInterval(function() {
8 random.append(new Date().getTime(), Math.random() * 10000);
9 }, 500);
10
11 function createTimeline() {
12 var chart = new SmoothieChart();
13 chart.addTimeSeries(random, { strokeStyle: 'rgba(0, 255, 0, 1)', fillStyle: 'rgba(0, 255, 0, 0.2)', lineWidth: 4 });
14 chart.streamTo(document.getElementById("chart"), 500);
15 }
ramangrover29a04696c2013-07-31 21:50:38 -070016 </script>
ramangrover29c996e282013-08-03 14:36:45 -070017 </head>
18 <body onload="createTimeline()">
19
20 <p>The <em>hello world</em> of <a href="../">Smoothie Charts</a>. View source.</p>
21
22 <canvas id="chart" width="400" height="100"></canvas>
23
ramangrover29a04696c2013-07-31 21:50:38 -070024 </body>
25</html>