From 05c9d0c47fbb3d9aef63aa00f303b1cfa0b7f310 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Mon, 30 Nov 2009 00:45:23 -0500 Subject: [PATCH] remove one more Iter dep --- dygraph-canvas.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/dygraph-canvas.js b/dygraph-canvas.js index 53db3df..3dfaf5f 100644 --- a/dygraph-canvas.js +++ b/dygraph-canvas.js @@ -517,7 +517,12 @@ DygraphCanvasRenderer.prototype._renderLineChart = function() { var prevYs = [-1, -1]; var count = 0; var yscale = this.layout.yscale; - var errorTrapezoid = function(ctx_,point) { + // should be same color as the lines + var err_color = color.colorWithAlpha(0.15); + ctx.fillStyle = err_color.toRGBString(); + ctx.beginPath(); + for (var j = 0; j < this.layout.points.length; j++) { + var point = this.layout.points[j]; count++; if (point.name == setName) { if (!point.y || isNaN(point.y)) { @@ -529,22 +534,17 @@ DygraphCanvasRenderer.prototype._renderLineChart = function() { newYs[0] = this.area.h * newYs[0] + this.area.y; newYs[1] = this.area.h * newYs[1] + this.area.y; if (prevX >= 0) { - ctx_.moveTo(prevX, prevYs[0]); - ctx_.lineTo(point.canvasx, newYs[0]); - ctx_.lineTo(point.canvasx, newYs[1]); - ctx_.lineTo(prevX, prevYs[1]); - ctx_.closePath(); + ctx.moveTo(prevX, prevYs[0]); + ctx.lineTo(point.canvasx, newYs[0]); + ctx.lineTo(point.canvasx, newYs[1]); + ctx.lineTo(prevX, prevYs[1]); + ctx.closePath(); } prevYs[0] = newYs[0]; prevYs[1] = newYs[1]; prevX = point.canvasx; } - }; - // should be same color as the lines - var err_color = color.colorWithAlpha(0.15); - ctx.fillStyle = err_color.toRGBString(); - ctx.beginPath(); - MochiKit.Iter.forEach(this.layout.points, partial(errorTrapezoid, ctx), this); + } ctx.fill(); } }; -- 2.7.4