4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
13 <font size=-
1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)
</font><br/>
15 <div id=
"demodiv"></div>
17 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
20 <script type=
"text/javascript">
22 document.getElementById(
"demodiv"),
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));
30 r +=
"," +
10*(
250 -
8*i);
31 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
37 labelsDiv: document.getElementById('status'),
38 labelsSeparateLines: true,
41 colors: [
"rgb(51,204,204)",
44 "rgba(50,50,200,0.4)"],
47 title: 'Interesting Shapes',
50 axisLineColor: 'white',