Fix bugs in connectSeparatedPoints implementation. Add test.
[dygraphs.git] / tests / connect-separated.html
diff --git a/tests/connect-separated.html b/tests/connect-separated.html
new file mode 100644 (file)
index 0000000..5993375
--- /dev/null
@@ -0,0 +1,34 @@
+<html>
+  <head>
+    <title>connect separated</title>
+    <!--[if IE]>
+    <script type="text/javascript" src="excanvas.js"></script>
+    <![endif]-->
+    <script type="text/javascript" src="../dygraph-combined.js"></script>
+    <script type="text/javascript" src="../dygraph-canvas.js"></script>
+    <script type="text/javascript" src="../dygraph.js"></script>
+  </head>
+  <body>
+    <p>Connecting separated points.  All three of the series should have their points
+      connected with lines, and hovering over them should produce dot and legend
+      overlays in the proper color.</p>
+      
+    <div id="graphdiv" style="width:600px; height:300px;"></div>
+    <script type="text/javascript">
+      new Dygraph(document.getElementById("graphdiv"),
+      [
+        [ new Date("2009/12/01"), 10, 10, 10],
+        [ new Date("2009/12/02"), 15, 11, 12],
+        [ new Date("2009/12/03"), null, null, 12],
+        [ new Date("2009/12/04"), 20, 14, null],
+        [ new Date("2009/12/05"), 15, null, 17],
+        [ new Date("2009/12/06"), 18, null, 16],
+        [ new Date("2009/12/07"), 12, 14, 19]
+      ],
+      {
+        connectSeparatedPoints: true,
+        labels: ["Date","Series1","Series2","Series3"],
+      });
+    </script>
+  </body>
+</html>