4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Multiple y-axes
</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>Multiple y-axes
</h2>
18 <p>The same data with both one and two y-axes. Two y-axes:
</p>
19 <div id=
"demodiv" style=
"width: 640; height: 350; border: 1px solid black"></div>
20 <p>A single y-axis:
</p>
21 <div id=
"demodiv_one" style=
"width: 640; height: 350; border: 1px solid black"></div>
23 <script type=
"text/javascript">
25 for (var i =
1; i <=
100; i++) {
27 if (d
> 31) { m =
"02"; d -=
31; }
28 if (m ==
"02" && d
> 28) { m =
"03"; d -=
28; }
29 if (m ==
"03" && d
> 31) { m =
"04"; d -=
31; }
30 if (d <
10) d =
"0" + d;
31 // two series, one with range
1-
100, one with range
1-
2M
32 data.push([new Date(
"2010/" + m +
"/" + d),
35 1e6 * (
1 + i * (
100 - i) / (
50 *
50)),
36 1e6 * (
2 - i * (
100 - i) / (
50 *
50))]);
40 document.getElementById(
"demodiv"),
43 labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ],
49 axis: 'Y3' // use the same y-axis as series Y3
53 // set axis-related properties here
57 ylabel: 'Primary y-axis',
58 y2label: 'Secondary y-axis',
64 document.getElementById(
"demodiv_one"),
67 labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ],
69 ylabel: 'Primary y-axis',
70 y2label: 'Secondary y-axis',
75 g.updateOptions( { fillGraph: el.checked } );
76 g2.updateOptions( { fillGraph: el.checked } );
80 <input type=checkbox
id=
"check" onChange=
"update(this)"><label for=
"check"> Fill?
</label>