X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Fzoom.html;h=a835dc379102c2e24d3c5365e3fedfc4a5b37c47;hb=e03f3a93d45459a9748050d1d38149494975b3d9;hp=ad0bc9da10bd516e94c30bbfc88bab68998b7abe;hpb=7142904fe1a5324d9eb90f1ef954eb8c931f7973;p=dygraphs.git diff --git a/tests/zoom.html b/tests/zoom.html index ad0bc9d..a835dc3 100644 --- a/tests/zoom.html +++ b/tests/zoom.html @@ -1,13 +1,17 @@ + + zoom - - - - + + + @@ -16,8 +20,14 @@ buttons are useful for testing.

Window coordinates (in dates and values):

+
+

Zoomed: False

+

Zoomed X: False

+

Zoomed Y: False

+

+

Zoom operations:

  @@ -25,13 +35,17 @@       -
+

        -
+

  +

+   +   +  

@@ -40,8 +54,13 @@ document.getElementById("div_g"), NoisyData, { errorBars: true, - zoomCallback : function(minDate, maxDate, yRanges) { - showDimensions(minDate, maxDate, yRanges); + zoomCallback : function(minDate, maxDate, yRange) { + showDimensions(minDate, maxDate, yRange); + }, + drawCallback: function(me, initial) { + document.getElementById("zoomed").innerHTML = "" + me.isZoomed(); + document.getElementById("zoomedX").innerHTML = "" + me.isZoomed("x"); + document.getElementById("zoomedY").innerHTML = "" + me.isZoomed("y"); } } ); @@ -91,6 +110,10 @@ valueRange: null }); } + + function panEdgeFraction(value) { + g.updateOptions({ panEdgeFraction : value }); + }