From e55b4f4f1386ee9ff2588206875fa2d70403fbb1 Mon Sep 17 00:00:00 2001 From: Wim Bruynooghe Date: Fri, 31 May 2013 16:50:37 +0300 Subject: [PATCH] Update dygraph.js --- dygraph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dygraph.js b/dygraph.js index 65eecb8..dfab016 100644 --- a/dygraph.js +++ b/dygraph.js @@ -2822,8 +2822,8 @@ Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) { // On the log scale, points less than zero do not exist. // This will create a gap in the chart. if (errorBars || customBars) { + // point.length is either 2 (errorBars) or 3 (customBars) for (var k = 0; k < point.length; k++) { - // point.length is either 2 (errorBars) or 3 (customBars) if (point[k] <= 0) { point = null; break; -- 2.7.4