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