4 <title>plugins demo
</title>
5 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
7 <!-- Include the Javascript for the plug-in --
>
8 <script type=
"text/javascript" src=
"../extras/unzoom.js"></script>
13 <div id=
"demodiv"></div>
15 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
18 <script type=
"text/javascript">
20 document.getElementById(
"demodiv"),
22 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
23 var r =
"date,parabola,line,another line,sine wave\n";
24 for (var i=
1; i<=
31; i++) {
25 r +=
"200610" + zp(i);
26 r +=
"," +
10*(i*(
31-i));
28 r +=
"," +
10*(
250 -
8*i);
29 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
35 labelsDiv: document.getElementById('status'),
36 labelsSeparateLines: true,
39 colors: [
"rgb(51,204,204)",
42 "rgba(50,50,200,0.4)"],
45 title: 'Interesting Shapes',
48 axisLineColor: 'white',
50 // Set the plug-ins in the options.
52 Dygraph.Plugins.Unzoom