Remove dead code (#818)
[dygraphs.git] / tests / two-axes-vr.html
index 06f7e89..7a32ad3 100644 (file)
@@ -1,12 +1,9 @@
 <!DOCTYPE html>
 <html>
   <head>
+    <link rel="stylesheet" href="../dist/dygraph.css">
     <title>Multiple y-axes with valueRange</title>
-    <!--
-    For production (minified) code, use:
-    <script type="text/javascript" src="dygraph-combined.js"></script>
-    -->
-    <script type="text/javascript" src="../dygraph-dev.js"></script>
+    <script type="text/javascript" src="../dist/dygraph.js"></script>
 
   </head>
   <body>
             },
             ylabel: 'Primary y-axis',
             y2label: 'Secondary y-axis',
-            yAxisLabelWidth: 60
+            axes: {
+              y: {
+                axisLabelWidth: 60
+              }
+            }
           }
       );
 
@@ -89,7 +90,8 @@
             },
             axes: {
               y: {
-                valueRange: [40, 80]
+                valueRange: [40, 80],
+                axisLabelWidth: 60
               },
               y2: {
                 // set axis-related properties here
               }
             },
             ylabel: 'Primary y-axis',
-            y2label: 'Secondary y-axis',
-            yAxisLabelWidth: 60
+            y2label: 'Secondary y-axis'
           }
       );