4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>plugins demo
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
11 <!-- Include the Javascript for the plug-in --
>
12 <script type=
"text/javascript" src=
"../plugins/unzoom.js"></script>
17 <div id=
"demodiv"></div>
19 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
22 <script type=
"text/javascript">
24 document.getElementById(
"demodiv"),
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));
32 r +=
"," +
10*(
250 -
8*i);
33 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
39 labelsDiv: document.getElementById('status'),
40 labelsSeparateLines: true,
43 colors: [
"rgb(51,204,204)",
46 "rgba(50,50,200,0.4)"],
49 title: 'Interesting Shapes',
52 axisLineColor: 'white',
54 // Set the plug-ins in the options.
56 Dygraph.Plugins.Unzoom