Merge branch 'master' into chart-labels
[dygraphs.git] / tests / demo.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
5 <title>demo</title>
6 <!--[if IE]>
7 <script type="text/javascript" src="../excanvas.js"></script>
8 <![endif]-->
9 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
10 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
11 <script type="text/javascript" src="../dygraph-canvas.js"></script>
12 <script type="text/javascript" src="../dygraph.js"></script>
13 </head>
14 <body>
15 <h2>Demo</h2>
16 <font size=-1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)</font><br/>
17 <table><tr><td>
18 <div id="demodiv"></div>
19 </td><td valign=top>
20 <div id="status" style="width:200px; font-size:0.8em; padding-top:5px;"></div>
21 </td>
22 </tr></table>
23 <script type="text/javascript">
24 g = new Dygraph(
25 document.getElementById("demodiv"),
26 function() {
27 var zp = function(x) { if (x < 10) return "0"+x; else return x; };
28 var r = "date,parabola,line,another line,sine wave\n";
29 for (var i=1; i<=31; i++) {
30 r += "200610" + zp(i);
31 r += "," + 10*(i*(31-i));
32 r += "," + 10*(8*i);
33 r += "," + 10*(250 - 8*i);
34 r += "," + 10*(125 + 125 * Math.sin(0.3*i));
35 r += "\n";
36 }
37 return r;
38 },
39 {
40 labelsDiv: document.getElementById('status'),
41 labelsSeparateLines: true,
42 labelsKMB: true,
43 colors: ["rgb(51,204,204)",
44 "rgb(255,100,100)",
45 "#00DD55",
46 "rgba(50,50,200,0.4)"],
47 width: 640,
48 height: 480,
49 title: 'Interesting Shapes',
50 xlabel: 'Date',
51 ylabel: 'Count'
52 }
53 );
54 </script>
55 </body>
56 </html>