X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-layout.js;h=4b600f773b8893a617b081a10245493d2b0c8fca;hb=2323945cebe74e7ca1f3897fcb5e7a5aed5fc80f;hp=bab1d97afd17f5ec598735a1f0c5b2a3e3e1e1a3;hpb=72621b9af29dbd2e1729c3d841e2eef8027ca9b7;p=dygraphs.git diff --git a/dygraph-layout.js b/dygraph-layout.js index bab1d97..4b600f7 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -56,7 +56,7 @@ DygraphLayout.prototype.addDataset = function(setname, set_xy) { * Returns the box which the chart should be drawn in. This is the canvas's * box, less space needed for the axis and chart labels. * - * @return {{ x : numer, y : number, w : number, h : number }} + * @return {{x: number, y: number, w: number, h: number}} */ DygraphLayout.prototype.getPlotArea = function() { return this.area_; @@ -217,10 +217,7 @@ DygraphLayout.prototype._evaluateLineCharts = function() { // 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 boundaryIdStart = 0; - if (this.dygraph_.boundaryIds_.length > 0) { - boundaryIdStart = this.dygraph_.boundaryIds_[this.dygraph_.boundaryIds_.length-1][0] - } + var boundaryIdStart = this.dygraph_.getLeftBoundary_(); for (var setIdx = 0; setIdx < this.datasets.length; setIdx++) { var dataset = this.datasets[setIdx]; var setName = this.setNames[setIdx];