Add comment
authorWim Bruynooghe <wim@wimme.net>
Fri, 31 May 2013 13:48:46 +0000 (16:48 +0300)
committerWim Bruynooghe <wim@wimme.net>
Fri, 31 May 2013 13:48:46 +0000 (16:48 +0300)
dygraph.js

index 9f9dc26..65eecb8 100644 (file)
@@ -2823,6 +2823,7 @@ Dygraph.prototype.extractSeries_ = function(rawData, i, logScale) {
       // This will create a gap in the chart.
       if (errorBars || 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;