Commit | Line | Data |
---|---|---|
54425b14 | 1 | <!DOCTYPE html> |
285a6bda DV |
2 | <html> |
3 | <head> | |
10494b48 | 4 | <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9"> |
6f091595 | 5 | <title>demo</title> |
285a6bda | 6 | <!--[if IE]> |
a2b2c3a1 | 7 | <script type="text/javascript" src="../excanvas.js"></script> |
285a6bda | 8 | <![endif]--> |
d37dca40 DV |
9 | <script type="text/javascript" src="../strftime/strftime-min.js"></script> |
10 | <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script> | |
285a6bda DV |
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> | |
c21d2c2d | 18 | <div id="demodiv"></div> |
285a6bda DV |
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"> | |
00259bf3 | 24 | g = new Dygraph( |
285a6bda DV |
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 | }, | |
285a6bda | 39 | { |
285a6bda DV |
40 | labelsDiv: document.getElementById('status'), |
41 | labelsSeparateLines: true, | |
42 | labelsKMB: true, | |
551aa865 | 43 | colors: ["rgb(51,204,204)", |
285a6bda DV |
44 | "rgb(255,100,100)", |
45 | "#00DD55", | |
46 | "rgba(50,50,200,0.4)"], | |
ad1798c2 DV |
47 | width: 640, |
48 | height: 480, | |
49 | title: 'Interesting Shapes', | |
50 | xlabel: 'Date', | |
51 | ylabel: 'Count' | |
285a6bda DV |
52 | } |
53 | ); | |
54 | </script> | |
55 | </body> | |
56 | </html> |