X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-layout.js;h=e55f62b06190083d17aba9ad79984cbd552e68f6;hb=b843b52c15b95e0f97a172e67da0a3b865d1d5ee;hp=58f169b6b2745da21d315d96e4ab40c89b4f3e1c;hpb=5cfed8c5edf7cbb2514f2dcca9588db2ab262356;p=dygraphs.git diff --git a/dygraph-layout.js b/dygraph-layout.js index 58f169b..e55f62b 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -206,8 +206,6 @@ DygraphLayout._calcYNormal = function(axis, value) { }; DygraphLayout.prototype._evaluateLineCharts = function() { - // add all the rects - this.points = []; // An array to keep track of how many points will be drawn for each set. // This will allow for the canvas renderer to not have to check every point // for every data set since the points are added in order of the sets in @@ -216,25 +214,37 @@ DygraphLayout.prototype._evaluateLineCharts = function() { this.setPointsOffsets = []; var connectSeparated = this.attr_('connectSeparatedPoints'); + // TODO(bhs): these loops are a hot-spot for high-point-count charts. In fact, + // on chrome+linux, they are 6 times more expensive than iterating through the + // points and drawing the lines. The brunt of the cost comes from allocating + // the |point| structures. + var i = 0; + var totalPoints = 0; for (var setIdx = 0; setIdx < this.datasets.length; ++setIdx) { + totalPoints += this.datasets[setIdx].length; + } + this.points = new Array(totalPoints); + + for (var setIdx = 0; setIdx < this.datasets.length; ++setIdx) { + this.setPointsOffsets.push(i); var dataset = this.datasets[setIdx]; var setName = this.setNames[setIdx]; var axis = this.dygraph_.axisPropertiesForSeries(setName); - this.setPointsOffsets.push(this.points.length); - var setPointsLength = 0; - for (var j = 0; j < dataset.length; j++) { var item = dataset[j]; - var xValue = parseFloat(item[0]); - var yValue = parseFloat(item[1]); + var xValue = item[0]; + var yValue = item[1]; // 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 point = { + if (connectSeparated && item[1] === null) { + yValue = null; + } + this.points[i] = { // TODO(danvk): here x: xNormal, y: yNormal, @@ -242,13 +252,9 @@ DygraphLayout.prototype._evaluateLineCharts = function() { yval: yValue, name: setName }; - if (connectSeparated && item[1] === null) { - point.yval = null; - } - this.points.push(point); - setPointsLength += 1; + i++; } - this.setPointsLengths.push(setPointsLength); + this.setPointsLengths.push(i - this.setPointsOffsets[setIdx]); } }; @@ -296,13 +302,13 @@ DygraphLayout.prototype.evaluateWithError = function() { var axis = this.dygraph_.axisPropertiesForSeries(setName); for (j = 0; j < dataset.length; j++, i++) { var item = dataset[j]; - var xv = parseFloat(item[0]); - var yv = parseFloat(item[1]); + var xv = item[0]; + var yv = item[1]; if (xv == this.points[i].xval && yv == this.points[i].yval) { - var errorMinus = parseFloat(item[2]); - var errorPlus = parseFloat(item[3]); + var errorMinus = item[2]; + var errorPlus = item[3]; var yv_minus = yv - errorMinus; var yv_plus = yv + errorPlus;