X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Fmissing-data.html;h=d48237c697fff210ad587bdba7ef37acd125b7bc;hb=6e20721120a88fcf451c19559dfc62e2d316dd85;hp=68101e42676160119339ca94ab2d22abb30e299e;hpb=d16579a0ee27bb61214365d5de803121bab2a305;p=dygraphs.git diff --git a/tests/missing-data.html b/tests/missing-data.html index 68101e4..d48237c 100644 --- a/tests/missing-data.html +++ b/tests/missing-data.html @@ -1,12 +1,10 @@ + + missing data - - - - + + @@ -16,6 +14,9 @@
+
+
+
@@ -56,7 +57,7 @@ [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]] ], @@ -72,8 +73,8 @@ [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]] ], @@ -83,6 +84,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"] + } + );