2.0.0 release fixes (#815)
[dygraphs.git] / tests / per-series.html
index a35f767..69039da 100644 (file)
@@ -1,12 +1,8 @@
 <!DOCTYPE html>
 <html>
   <head>
-    <link rel="stylesheet" href="../css/dygraph.css">
+    <link rel="stylesheet" href="../dist/dygraph.css">
     <title>Per-Series Properties</title>
-    <!--
-    For production (minified) code, use:
-    <script type="text/javascript" src="dygraph-combined.js"></script>
-    -->
     <script type="text/javascript" src="../dist/dygraph.js"></script>
 
   </head>
@@ -15,8 +11,6 @@
     <div id="demodiv"></div>
     <h2>Chart with per-series properties with legend.</h2>
     <div id="demodiv2"></div>
-    <h2>First graph, using old-style series specification.</h2>
-    <div id="demodiv3"></div>
     <script type="text/javascript">
       data = function() {
         var zp = function(x) { if (x < 10) return "0"+x; else return x; };
                 }
               }
           );
-      g3 = new Dygraph(
-              document.getElementById("demodiv3"),
-              data,
-              {
-                strokeWidth: 2,
-                series: {
-                  'parabola': {
-                    strokeWidth: 0.0,
-                    drawPoints: true,
-                    pointSize: 4,
-                    highlightCircleSize: 6
-                  },
-                  'line': {
-                    strokeWidth: 1.0,
-                    drawPoints: true,
-                    pointSize: 1.5
-                  },
-                  'sine wave': {
-                    strokeWidth: 3,
-                    highlightCircleSize: 10
-                  },
-                  'sine wave2': {
-                    strokePattern: [10, 2, 5, 2],
-                    strokeWidth: 2,
-                    highlightCircleSize: 3
-                  }
-                }
-              }
-          );
-
     </script>
 </body>
 </html>