X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-layout.js;h=900db689fdec59259281e2f847d37d2312f6dbec;hb=c97b87c282caf695bc7dea62a4668e491b165ad7;hp=e25afba213b437103db9355693f204154890dc63;hpb=f34f95d1f2fe3adcc0bbe578368740afba513d9f;p=dygraphs.git diff --git a/dygraph-layout.js b/dygraph-layout.js index e25afba..900db68 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -210,8 +210,8 @@ DygraphLayout.prototype._evaluateLimits = function() { } }; -DygraphLayout._calcYNormal = function(axis, value) { - if (axis.logscale) { +DygraphLayout._calcYNormal = function(axis, value, logscale) { + if (logscale) { return 1.0 - ((Dygraph.log10(value) - Dygraph.log10(axis.minyval)) * axis.ylogscale); } else { return 1.0 - ((value - axis.minyval) * axis.yscale); @@ -232,6 +232,8 @@ DygraphLayout.prototype._evaluateLineCharts = function() { var dataset = this.datasets[setIdx]; var setName = this.setNames[setIdx]; var axis = this.dygraph_.axisPropertiesForSeries(setName); + // TODO (konigsberg): use optionsForAxis instead. + var logscale = this.dygraph_.attributes_.getForSeries("logscale", setIdx); // Preallocating the size of points reduces reallocations, and therefore, // calls to collect garbage. @@ -245,7 +247,7 @@ DygraphLayout.prototype._evaluateLineCharts = function() { // Range from 0-1 where 0 represents left and 1 represents right. var xNormal = (xValue - this.minxval) * this.xscale; // Range from 0-1 where 0 represents top and 1 represents bottom - var yNormal = DygraphLayout._calcYNormal(axis, yValue); + var yNormal = DygraphLayout._calcYNormal(axis, yValue, logscale); // TODO(danvk): drop the point in this case, don't null it. // The nulls create complexity in DygraphCanvasRenderer._drawSeries. @@ -277,7 +279,7 @@ DygraphLayout.parseFloat_ = function(val) { // Assume it's a number or NaN. If it's something else, I'll be shocked. return val; -} +}; DygraphLayout.prototype._evaluateLineTicks = function() { var i, tick, label, pos; @@ -322,6 +324,9 @@ DygraphLayout.prototype.evaluateWithError = function() { var dataset = this.datasets[setIdx]; var setName = this.setNames[setIdx]; var axis = this.dygraph_.axisPropertiesForSeries(setName); + // TODO (konigsberg): use optionsForAxis instead. + var logscale = this.dygraph_.attributes_.getForSeries("logscale", setIdx); + for (j = 0; j < dataset.length; j++, i++) { var item = dataset[j]; var xv = DygraphLayout.parseFloat_(item[0]); @@ -334,8 +339,8 @@ DygraphLayout.prototype.evaluateWithError = function() { var yv_minus = yv - errorMinus; var yv_plus = yv + errorPlus; - points[j].y_top = DygraphLayout._calcYNormal(axis, yv_minus); - points[j].y_bottom = DygraphLayout._calcYNormal(axis, yv_plus); + points[j].y_top = DygraphLayout._calcYNormal(axis, yv_minus, logscale); + points[j].y_bottom = DygraphLayout._calcYNormal(axis, yv_plus, logscale); } } } @@ -409,12 +414,15 @@ DygraphLayout.prototype.unstackPointAtIndex = function(setIdx, row) { // The unstacked yval is equal to the current yval minus the yval of the // next point at the same xval. - var points = this.points[setIdx]; - for (var i = row + 1; i < points.length; i++) { - if ((points[i].xval == point.xval) && points[i].yval) { - unstackedPoint.yval -= points[i].yval; - break; - } + if (setIdx == this.points.length - 1) { + // We're the last series, so no unstacking is necessary. + return unstackedPoint; + } + + var points = this.points[setIdx + 1]; + if (points[row].xval == point.xval && // should always be true? + points[row].yval) { + unstackedPoint.yval -= points[row].yval; } return unstackedPoint;