From: Dan Vanderkam Date: Tue, 26 Jul 2011 03:30:00 +0000 (-0400) Subject: temporarily disable optimization X-Git-Tag: v1.0.0~444 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=f6939dc9c3ca41f97063ee436c1e0df470c12476;p=dygraphs.git temporarily disable optimization --- diff --git a/dygraph-layout.js b/dygraph-layout.js index 4f8656e..85a4bcb 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -143,7 +143,9 @@ DygraphLayout.prototype._evaluateLineCharts = function() { var currYPx = NaN; // Ignore the pixel skipping optimization if there are error bars. - var skip_opt = (this.attr_("errorBars") || + // XXX 2011-07-25 temporarily disabled (see autotests/tests/selection.js) + var skip_opt = (true || + this.attr_("errorBars") || this.attr_("customBars") || this.annotations.length > 0);