Fix errors/warnings in tests/*.html
[dygraphs.git] / tests / spacing.html
index ca84bb1..18f4e4d 100644 (file)
@@ -1,31 +1,43 @@
+<!DOCTYPE html>
 <html>
   <head>
     <title>spacing</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.js"></script>
+    <!--
+    For production (minified) code, use:
+    <script type="text/javascript" src="dygraph-combined.js"></script>
+    -->
+    <script type="text/javascript" src="../dist/dygraph.js"></script>
+
     <script type="text/javascript" src="data.js"></script>
   </head>
   <body>
     <p>Wide</p>
-    <div id="g" style="width:600px; height:300px;"></div>
+    <div id="div_g" style="width:800px; height:300px;"></div>
 
     <p>Narrow</p>
-    <div id="g2" style="width:300px; height:200px;"></div>
+    <div id="div_g2" style="width:300px; height:200px;"></div>
 
     <script type="text/javascript">
-      g = new DateGraph(
-            document.getElementById("g"),
-            data, null, {
-              rollPeriod: 7
+      g = new Dygraph(
+            document.getElementById("div_g"),
+            data, {
+              rollPeriod: 7,
+              axes: {
+                y: {
+                  pixelsPerLabel: 20
+                }
+              }
             }
           );
-      g2 = new DateGraph(
-            document.getElementById("g2"),
-            data, null, {
+      g2 = new Dygraph(
+            document.getElementById("div_g2"),
+            data, {
               rollPeriod: 7,
+              axes: {
+                y: {
+                  pixelsPerLabel: 20
+                }
+              }
             }
           );
     </script>