Commit | Line | Data |
---|---|---|
d9fbba56 RK |
1 | <!DOCTYPE html> |
2 | <html> | |
3 | <head> | |
4 | <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9"> | |
5 | <title>plugins demo</title> | |
6 | <!--[if IE]> | |
7 | <script type="text/javascript" src="../excanvas.js"></script> | |
8 | <![endif]--> | |
9 | <script type="text/javascript" src="../dygraph-dev.js"></script> | |
10 | ||
11 | <!-- Include the Javascript for the plug-in --> | |
12 | <script type="text/javascript" src="../plugins/unzoom.js"></script> | |
13 | </head> | |
14 | <body> | |
15 | <h2>Plugins Demo</h2> | |
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 | { | |
39 | labelsDiv: document.getElementById('status'), | |
40 | labelsSeparateLines: true, | |
41 | labelsKMB: true, | |
42 | legend: 'always', | |
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 | axisLineColor: 'white', | |
53 | ||
54 | // Set the plug-ins in the options. | |
55 | plugins : [ | |
56 | Dygraph.Plugins.Unzoom | |
57 | ] | |
58 | } | |
59 | ); | |
60 | </script> | |
61 | </body> | |
62 | </html> |