X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=plugins%2Frange-selector.js;h=717f85059442578e9e37a9aafc8cb351bc688938;hb=c715be428d83d80c0a26fd60dc5bc36fb4c908d9;hp=d8a3c7aa83b4fd9acfb1a39f88afc0693a9ecca3;hpb=5575fa3660cca92dd0564ac3647e3440fb0a0c07;p=dygraphs.git diff --git a/plugins/range-selector.js b/plugins/range-selector.js index d8a3c7a..717f850 100644 --- a/plugins/range-selector.js +++ b/plugins/range-selector.js @@ -74,7 +74,7 @@ rangeSelector.prototype.createInterface_ = function() { // Range selector and animatedZooms have a bad interaction. See issue 359. if (this.getOption_('animatedZooms')) { - Dygraph.warn('Animated zooms and range selector are not compatible; disabling animatedZooms.'); + console.warn('Animated zooms and range selector are not compatible; disabling animatedZooms.'); this.dygraph_.updateOptions({animatedZooms: false}, true); } @@ -544,7 +544,7 @@ rangeSelector.prototype.drawStaticLayer_ = function() { try { this.drawMiniPlot_(); } catch(ex) { - Dygraph.warn(ex); + console.warn(ex); } var margin = 0.5; @@ -597,7 +597,7 @@ rangeSelector.prototype.drawMiniPlot_ = function() { // Skip points that don't change the x-value. Overly fine-grained points // can cause major slowdowns with the ctx.fill() call below. - if (prevX !== null && Math.round(x) == Math.round(prevX)) { + if (!stepPlot && prevX !== null && Math.round(x) == Math.round(prevX)) { continue; }