From e4dfed737ded1fc844e671892b6b9ead52fa5844 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Sat, 22 Nov 2014 01:42:03 -0500 Subject: [PATCH] fix two-axes-vr --- tests/two-axes-vr.html | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/tests/two-axes-vr.html b/tests/two-axes-vr.html index 0646b9a..12e8025 100644 --- a/tests/two-axes-vr.html +++ b/tests/two-axes-vr.html @@ -43,13 +43,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: { @@ -70,13 +65,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: { @@ -99,13 +89,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: { -- 2.7.4