From: David Eberlein Date: Fri, 12 Apr 2013 14:15:06 +0000 (+0200) Subject: TEST: test to verify the bugfix X-Git-Tag: v1.0.0~37^2~6 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=61d0e7b38af351e6121d37184caa7a6f99aa00da;p=dygraphs.git TEST: test to verify the bugfix --- diff --git a/tests/missing-data.html b/tests/missing-data.html index fd0bfbd..0aa3c3c 100644 --- a/tests/missing-data.html +++ b/tests/missing-data.html @@ -21,6 +21,9 @@
+ +
+
@@ -88,6 +91,39 @@ labels: [ "X", "Series1", "Series2" ] } ); + + g5 = new Dygraph( + document.getElementById("graph5"), + [ + [1, [10, 2], [20, 3]], + [2, [12, 2], [20, 3]], + [3, [ 8, 2], [20, 3]], + [4, [2, null], null], + [5, null, [null, 3]], + [6, [ 9, 2], [20, 3]], + [7, [10, 2], [20, 3]] + ], + { + errorBars: true, + labels: [ "X", "Series1", "Series2" ] + } + ); + + g6 = new Dygraph( + document.getElementById("graph6"), + [ + [1, [8, 10,12]], + [2, [3, 5,7]], + [3, null], + [4, [ 9,null, 2]], + [5, [null,2, null]], + [6, [2,3, 6]] + ], + { + customBars: true, + labels: [ "X", "Series1"] + } + );