Removing unnecessary HTML from per-series.
[dygraphs.git] / tests / per-series.html
1 <html>
2 <head>
3 <title>Per-Series Properties</title>
4 <!--[if IE]>
5 <script type="text/javascript" src="../excanvas.js"></script>
6 <![endif]-->
7 <script type="text/javascript" src="../strftime/strftime-min.js"></script>
8 <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
9 <script type="text/javascript" src="../dygraph-canvas.js"></script>
10 <script type="text/javascript" src="../dygraph.js"></script>
11 </head>
12 <body>
13 <h2>Chart with per-series properties</h2>
14 <div id="demodiv"></div>
15
16 <script type="text/javascript">
17 g = new Dygraph(
18 document.getElementById("demodiv"),
19 function() {
20 var zp = function(x) { if (x < 10) return "0"+x; else return x; };
21 var r = "date,parabola,line,another line,sine wave\n";
22 for (var i=1; i<=31; i++) {
23 r += "200610" + zp(i);
24 r += "," + 10*(i*(31-i));
25 r += "," + 10*(8*i);
26 r += "," + 10*(250 - 8*i);
27 r += "," + 10*(125 + 125 * Math.sin(0.3*i));
28 r += "\n";
29 }
30 return r;
31 },
32 {
33 strokeWidth: 2,
34 'parabola': {
35 strokeWidth: 0.0,
36 drawPoints: true,
37 pointSize: 4,
38 highlightCircleSize: 6
39 },
40 'line': {
41 strokeWidth: 1.0,
42 drawPoints: true,
43 pointSize: 1.5
44 },
45 'sine wave': {
46 strokeWidth: 3,
47 highlightCircleSize: 10
48 }
49 }
50 );
51 </script>
52 </body>
53 </html>