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