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=
"../strftime/strftime-min.js"></script>
10 <script type=
"text/javascript" src=
"../rgbcolor/rgbcolor.js"></script>
11 <script type=
"text/javascript" src=
"../dygraph-canvas.js"></script>
12 <script type=
"text/javascript" src=
"../dygraph.js"></script>
16 <font size=-
1>(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom out.)
</font><br/>
18 <div id=
"demodiv"></div>
20 <div id=
"status" style=
"width:200px; font-size:0.8em; padding-top:5px;"></div>
23 <script type=
"text/javascript">
25 document.getElementById(
"demodiv"),
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));
33 r +=
"," +
10*(
250 -
8*i);
34 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
40 labelsDiv: document.getElementById('status'),
41 labelsSeparateLines: true,
43 colors: [
"rgb(51,204,204)",
46 "rgba(50,50,200,0.4)"],
49 title: 'Interesting Shapes',