X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Fmissing-data.html;h=f337de53e4e66c89d29b00ba4b17c03421bf0b7f;hb=6eef8c1b9ec7b247ee2b508032bd3ec957d0fb68;hp=cec653ce58af64bf5dc22c94b6d0c7cb15faaa0f;hpb=90eacdc3c182a8f9741bd9995a8e6d29eaaf6833;p=dygraphs.git diff --git a/tests/missing-data.html b/tests/missing-data.html index cec653c..f337de5 100644 --- a/tests/missing-data.html +++ b/tests/missing-data.html @@ -1,12 +1,13 @@ + missing data - - - - + + + @@ -16,6 +17,9 @@
+
+
+
@@ -56,9 +60,9 @@ [2, [12, 2], [20, 3]], [3, [ 8, 2], [20, 3]], [4, [null, 2], [20, 3]], - [5, [null, 2], [null, 3]], + [5, [null, 2], null], [6, [ 9, 2], [20, 3]], - [7, [10, 2], [20, 3]], + [7, [10, 2], [20, 3]] ], { errorBars: true, @@ -72,10 +76,10 @@ [1, [10, 2], [20, 3]], [2, [12, 2], [20, 3]], [3, [ 8, 2], [20, 3]], - [4, [null, 2], [20, 3]], - [5, [null, 2], [null, 3]], + [4, null, [20, 3]], + [5, null, [null, 3]], [6, [ 9, 2], [20, 3]], - [7, [10, 2], [20, 3]], + [7, [10, 2], [20, 3]] ], { errorBars: true, @@ -83,6 +87,41 @@ 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, + connectSeparatedPoints: false, + labels: [ "X", "Series1", "Series2" ] + } + ); + + g6 = new Dygraph( + document.getElementById("graph6"), + [ + [1, [8, 10,12],null], + [2, [3, 5,7],[4,6,7]], + [3, null,[1,2,4]], + [4, [ 9,null, 2],[3,4,8]], + [5, [null,2, null],[6,8,9]], + [6, [2,3, 6],[2,3,5]] + ], + { + customBars: true, + connectSeparatedPoints: false, + labels: [ "X", "Series1", "Series2"] + } + );