Bug fix for dygraph point selection touch event.
[dygraphs.git] / tests / isolated-points.html
index 303233d..0c53769 100644 (file)
@@ -1,19 +1,15 @@
 <!DOCTYPE html>
 <html>
   <head>
+    <link rel="stylesheet" href="../dist/dygraph.css">
     <title>isolated points</title>
-    <!--[if IE]>
-    <script type="text/javascript" src="../excanvas.js"></script>
-    <![endif]-->
-    <script type="text/javascript" src="../strftime/strftime-min.js"></script>
-    <script type="text/javascript" src="../rgbcolor/rgbcolor.js"></script>
-    <script type="text/javascript" src="../dygraph-canvas.js"></script>
-    <script type="text/javascript" src="../dygraph.js"></script>
+    <script type="text/javascript" src="../dist/dygraph.js"></script>
+
   </head>
   <body>
     <div id="graph"></div>
     <script type="text/javascript">
-    new Dygraph(
+    var g = new Dygraph(
       document.getElementById("graph"),
       [
         [ 1, 10, 11],
       ],
       {
         labels: ["X", "S1", "S2" ],
+        series: {
+          S1: {
+            drawGapEdgePoints: true
+          }
+        },
+        pointSize: 4,
         showRoller: true
       }
     );