From: Robert Konigsberg Date: Thu, 6 Jun 2013 02:11:44 +0000 (-0700) Subject: Merge pull request #250 from wimme/patch-4 X-Git-Tag: v1.0.0~25 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=ba57e1bb6097fe00538c146fea845d8931f819f0;hp=1dc23fac4c126b2b3742801b2d82137044498ebf;p=dygraphs.git Merge pull request #250 from wimme/patch-4 LogScale and customBars with negative values --- diff --git a/auto_tests/tests/custom_bars.js b/auto_tests/tests/custom_bars.js index 2169ade..231dcd8 100644 --- a/auto_tests/tests/custom_bars.js +++ b/auto_tests/tests/custom_bars.js @@ -151,3 +151,33 @@ CustomBarsTestCase.prototype.testCustomBarsLogScale = function() { [247.5, 152.02209814465604]], { fillStyle: "#00ff00" }); }; + +CustomBarsTestCase.prototype.testCustomBarsWithNegativeValuesInLogScale = + function() { + var graph = document.getElementById("graph"); + + var count = 0; + var drawPointCallback = function() { + count++; + }; + + var g = new Dygraph(graph, + [ + [1, [10, 20,30]], + [2, [5, 10, 15]], + [3, [-1, 5, 10]] + ], + { + drawPoints: true, + drawPointCallback : drawPointCallback, + customBars: true + }); + + // Normally all three points would be drawn. + assertEquals(3, count); + count = 0; + + // In log scale, the third point shouldn't be shown. + g.updateOptions({ logscale : true }); + assertEquals(2, count); +}; diff --git a/dygraph.js b/dygraph.js index bd11c24..dc3b798 100644 --- a/dygraph.js +++ b/dygraph.js @@ -2824,12 +2824,20 @@ Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) { if (logScale) { // On the log scale, points less than zero do not exist. // This will create a gap in the chart. - if (point <= 0) { + if (errorBars || customBars) { + // point.length is either 2 (errorBars) or 3 (customBars) + for (var k = 0; k < point.length; k++) { + if (point[k] <= 0) { + point = null; + break; + } + } + } else if (point <= 0) { point = null; } } // Fix null points to fit the display type standard. - if(point !== null) { + if (point !== null) { series.push([x, point]); } else { series.push([x, errorBars ? [null, null] : customBars ? [null, null, null] : point]);