Merge branch 'master' of git://github.com/danvk/dygraphs
[dygraphs.git] / tests / zoom.html
index 0c21446..1f5cac9 100644 (file)
@@ -1,6 +1,6 @@
 <html>
   <head>
-    <title>noise</title>
+    <title>zoom</title>
     <!--[if IE]>
     <script type="text/javascript" src="excanvas.js"></script>
     <![endif]-->
     <script type="text/javascript" src="data.js"></script>
   </head>
   <body>
-    <h3>Click the buttons to change the zoom</h3>
+    <h3>Click the buttons to change the zoom level or just use the normal
+    click-and drag. While zoom typically works by click-and-drag, the
+    butons are useful for testing.</h3>
     <h4>Window coordinates (in dates and values):</h4>
     <div id = "dimensions"></div>
     <div id="div_g" style="width:600px; height:300px;"></div>
 
     <p><b>Zoom operations:</b></p>
     <p>
-      <input type="button" value="Zoom operation 1" onclick="sizeGraph(1)">&nbsp;
-      <input type="button" value="Zoom operation 2" onclick="sizeGraph(2)">&nbsp;
-      <input type="button" value="Zoom operation 3" onclick="sizeGraph(3)">&nbsp;
-      <input type="button" value="Zoom operation 4" onclick="sizeGraph(4)">&nbsp;
-      <input type="button" value="Unzoom" onclick="sizeGraph(5)">&nbsp;
+      <input type="button" value="Y (3,5)" onclick="zoomGraphY(3,5)">&nbsp;
+      <input type="button" value="Y (0,4)" onclick="zoomGraphY(0,4)">&nbsp;
+      <input type="button" value="Y (2,4)" onclick="zoomGraphY(2,4)">&nbsp;
+      <input type="button" value="Y (0,2)" onclick="zoomGraphY(0,2)">&nbsp;
+      <input type="button" value="Y (0,1)" onclick="zoomGraphY(0,1)">&nbsp;
+      <br>
+      <input type="button" value="Oct 8-13" onclick="zoomGraphX(1160261979962, 1163905694248)">&nbsp;
+      <input type="button" value="Oct 22-28" onclick="zoomGraphX(1161489164461 , 1162008465957)">&nbsp;
+      <input type="button" value="Oct 23-24" onclick="zoomGraphX(1161575878860, 1161660991675)">&nbsp;
+      <input type="button" value="Oct 26 6AM-noon" onclick="zoomGraphX(1161770537840, 1161792063332)">&nbsp;
+      <br>
+      <input type="button" value="Unzoom" onclick="unzoomGraph()">&nbsp;
       </p>
 
 
@@ -30,7 +39,7 @@
       g = new Dygraph(
             document.getElementById("div_g"),
             NoisyData, {
-              zoomCallback : function(a,b,c,d) { showDimensions(a,b,c,d); }
+              zoomCallback : function(a,b,c,d) { showDimensions(a,b,c,d); },
             }
           );
 
@@ -42,7 +51,6 @@
       var maxDate = g.xAxisRange()[1];
       var minValue = g.yAxisRange()[0];
       var maxValue = g.yAxisRange()[1];
-
       showDimensions(minDate, maxDate, minValue, maxValue);
 
       function showDimensions(minDate, maxDate, minValue, maxValue) {
           "valueRange : [" + minValue + " , "+ maxValue + "],";
       }
 
-      function sizeGraph(i) {
-        switch(i) {
-          case 1: g.doZoomYValues_(4, 2);
-                  break;
-          case 5: g.doUnzoom_();
-                    break;
-        }
+      function zoomGraphX(minDate, maxDate) {
+        g.doZoomXDates_(minDate, maxDate);
+      }
+
+      function zoomGraphY(minValue, maxValue) {
+        g.doZoomYValues_(minValue, maxValue);
+      }
+
+      function unzoomGraph() {
+        g.doUnzoom_();
       }
     </script>