From f6939dc9c3ca41f97063ee436c1e0df470c12476 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Mon, 25 Jul 2011 23:30:00 -0400 Subject: [PATCH] temporarily disable optimization --- dygraph-layout.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- 2.7.4