4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Multiple y-axes with valueRange
</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 with valueRange
</h2>
18 <p>The same data with both different valueRanges. Two-axis old y[
40,
70] valueRange:
</p>
19 <div id=
"demodiv" style=
"width: 640; height: 350; border: 1px solid black"></div>
20 <p>Two-axis new valueRange y[
40,
80] set:
</p>
21 <div id=
"demodiv_one" style=
"width: 640; height: 350; border: 1px solid black"></div>
22 <p>Two-axis new valueRange y[
40,
80]
& y2[
1e6,
1.2e6] set:
</p>
23 <div id=
"demodiv_two" style=
"width: 640; height: 350; border: 1px solid black"></div>
24 <script type=
"text/javascript">
26 for (var i =
1; i <=
100; i++) {
28 if (d
> 31) { m =
"02"; d -=
31; }
29 if (m ==
"02" && d
> 28) { m =
"03"; d -=
28; }
30 if (m ==
"03" && d
> 31) { m =
"04"; d -=
31; }
31 if (d <
10) d =
"0" + d;
32 // two series, one with range
1-
100, one with range
1-
2M
33 data.push([new Date(
"2010/" + m +
"/" + d),
36 1e6 * (
1 + i * (
100 - i) / (
50 *
50)),
37 1e6 * (
2 - i * (
100 - i) / (
50 *
50))]);
41 document.getElementById(
"demodiv"),
44 labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ],
50 axis: 'Y3' // use the same y-axis as series Y3
55 // set axis-related properties here
59 ylabel: 'Primary y-axis',
60 y2label: 'Secondary y-axis',
66 document.getElementById(
"demodiv_one"),
69 labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ],
75 axis: 'Y3' // use the same y-axis as series Y3
82 // set axis-related properties here
86 ylabel: 'Primary y-axis',
87 y2label: 'Secondary y-axis',
93 document.getElementById(
"demodiv_two"),
96 labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ],
102 axis: 'Y3' // use the same y-axis as series Y3
109 // set axis-related properties here
110 valueRange: [
1e6,
1.2e6],
114 ylabel: 'Primary y-axis',
115 y2label: 'Secondary y-axis',