negative test
authorDan Vanderkam <danvdk@gmail.com>
Fri, 27 Nov 2009 16:07:58 +0000 (11:07 -0500)
committerDan Vanderkam <danvdk@gmail.com>
Fri, 27 Nov 2009 16:07:58 +0000 (11:07 -0500)
tests/negative.html [new file with mode: 0644]

diff --git a/tests/negative.html b/tests/negative.html
new file mode 100644 (file)
index 0000000..1a25d60
--- /dev/null
@@ -0,0 +1,48 @@
+<html>
+  <head>
+    <title>negatives</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>All negatives (x-axis on top):</p>
+    <div id="g1" style="width:600px; height:200px;"></div>
+
+    <p>Mixed (x-axis in middle):</p>
+    <div id="g2" style="width:600px; height:200px;"></div>
+
+    <p>All positives (x-axis on bottom):</p>
+    <div id="g3" style="width:600px; height:200px;"></div>
+
+    <script type="text/javascript">
+      var negs = [];
+      var mixed = [];
+      var pos = [];
+      for (var i = 0; i < 100; i++) {
+        negs.push([i, -210 + i, -110 - i]);
+        mixed.push([i, -50 + i, 50 - i]);
+        pos.push([i, 1000 + 2 * i, 1100 + i]);
+      }
+
+      new Dygraph(
+        document.getElementById("g1"),
+        negs, { labels: [ 'x', 'y1', 'y2' ] }
+      );
+
+      new Dygraph(
+        document.getElementById("g2"),
+        mixed, { labels: [ 'x', 'y1', 'y2' ] }
+      );
+
+      new Dygraph(
+        document.getElementById("g3"),
+        pos, { labels: [ 'x', 'y1', 'y2' ] }
+      );
+
+    </script>
+  </body>
+</html>