X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Ftwo-axes-vr.html;h=7a32ad33070e7de833dad09444dc608b1e0e2870;hb=f160e4ac8166f74d1f0e5604061564fbca5ba5a5;hp=0646b9a24e0baefdef961530077892f9a99f11c4;hpb=6ad8b6a444ae32d026264409698f496506b3d33b;p=dygraphs.git diff --git a/tests/two-axes-vr.html b/tests/two-axes-vr.html index 0646b9a..7a32ad3 100644 --- a/tests/two-axes-vr.html +++ b/tests/two-axes-vr.html @@ -1,16 +1,9 @@ - + Multiple y-axes with valueRange - - - + @@ -43,13 +36,8 @@ { labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ], series : { - 'Y3': { - axis: { - } - }, - 'Y4': { - axis: 'Y3' // use the same y-axis as series Y3 - } + 'Y3': { axis: 'y2' }, + 'Y4': { axis: 'y2' } }, valueRange: [40, 70], axes: { @@ -59,8 +47,7 @@ } }, ylabel: 'Primary y-axis', - y2label: 'Secondary y-axis', - yAxisLabelWidth: 60 + y2label: 'Secondary y-axis' } ); @@ -70,13 +57,8 @@ { labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ], series : { - 'Y3': { - axis: { - } - }, - 'Y4': { - axis: 'Y3' // use the same y-axis as series Y3 - } + 'Y3': { axis: 'y2' }, + 'Y4': { axis: 'y2' } }, axes: { y: { @@ -89,27 +71,27 @@ }, ylabel: 'Primary y-axis', y2label: 'Secondary y-axis', - yAxisLabelWidth: 60 + axes: { + y: { + axisLabelWidth: 60 + } + } } ); - g2 = new Dygraph( + g3 = new Dygraph( document.getElementById("demodiv_two"), data, { labels: [ 'Date', 'Y1', 'Y2', 'Y3', 'Y4' ], series : { - 'Y3': { - axis: { - } - }, - 'Y4': { - axis: 'Y3' // use the same y-axis as series Y3 - } + 'Y3': { axis: 'y2' }, + 'Y4': { axis: 'y2' } }, axes: { y: { - valueRange: [40, 80] + valueRange: [40, 80], + axisLabelWidth: 60 }, y2: { // set axis-related properties here @@ -118,8 +100,7 @@ } }, ylabel: 'Primary y-axis', - y2label: 'Secondary y-axis', - yAxisLabelWidth: 60 + y2label: 'Secondary y-axis' } );