X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=sidebyside;f=dygraph.js;h=5a8b9ca1eb052cc29ec666dfa9a4dda1d2cf9e3f;hb=937029dffe23b54b2269a180ece191c5625744e5;hp=f20e1e1eb398298352453231a812cb525e1dd526;hpb=437c097971f7b20e593e256385bbc998c781e1d2;p=dygraphs.git diff --git a/dygraph.js b/dygraph.js index f20e1e1..5a8b9ca 100644 --- a/dygraph.js +++ b/dygraph.js @@ -1012,9 +1012,9 @@ Dygraph.prototype.doZoomXDates_ = function(minDate, maxDate) { Dygraph.prototype.doZoomY_ = function(lowY, highY) { // Find the highest and lowest values in pixel range. var r = this.toDataCoords(null, lowY); - var minValue = r[1]; - r = this.toDataCoords(null, highY); var maxValue = r[1]; + r = this.toDataCoords(null, highY); + var minValue = r[1]; this.doZoomYValues_(minValue, maxValue); }; @@ -1029,7 +1029,7 @@ Dygraph.prototype.doZoomY_ = function(lowY, highY) { * @private */ Dygraph.prototype.doZoomYValues_ = function(minValue, maxValue) { - this.valueWindow_ = [maxValue, minValue]; + this.valueWindow_ = [minValue, maxValue]; this.drawGraph_(this.rawData_); if (this.attr_("zoomCallback")) { var xRange = this.xAxisRange();