4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Per-Series Properties
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
17 <h2>Chart with per-series properties
</h2>
18 <div id=
"demodiv"></div>
19 <h2>Chart with per-series properties with legend.
</h2>
20 <div id=
"demodiv2"></div>
21 <h2>First graph, using old-style series specification.
</h2>
22 <div id=
"demodiv3"></div>
23 <script type=
"text/javascript">
25 var zp = function(x) { if (x <
10) return
"0"+x; else return x; };
26 var r =
"date,parabola,line,another line,sine wave,sine wave2\n";
27 for (var i=
1; i<=
31; i++) {
28 r +=
"200610" + zp(i);
29 r +=
"," +
10*(i*(
31-i));
31 r +=
"," +
10*(
250 -
8*i);
32 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i));
33 r +=
"," +
10*(
125 +
125 * Math.sin(
0.3*i+Math.PI));
39 document.getElementById(
"demodiv"),
48 highlightCircleSize:
6
57 highlightCircleSize:
10
60 strokePattern: [
10,
2,
5,
2],
62 highlightCircleSize:
3
68 document.getElementById(
"demodiv2"),
77 highlightCircleSize:
6
80 strokePattern: Dygraph.DASHED_LINE,
86 strokePattern: [
25,
5]
89 strokePattern: Dygraph.DOTTED_LINE,
91 highlightCircleSize:
10
94 strokePattern: Dygraph.DOT_DASH_LINE,
96 highlightCircleSize:
3
101 document.getElementById(
"demodiv3"),
109 highlightCircleSize:
6
118 highlightCircleSize:
10
121 strokePattern: [
10,
2,
5,
2],
123 highlightCircleSize:
3