| 1 | /** |
| 2 | * @license |
| 3 | * Copyright 2006 Dan Vanderkam (danvdk@gmail.com) |
| 4 | * MIT-licensed (http://opensource.org/licenses/MIT) |
| 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * @fileoverview Based on PlotKit.CanvasRenderer, but modified to meet the |
| 9 | * needs of dygraphs. |
| 10 | * |
| 11 | * In particular, support for: |
| 12 | * - grid overlays |
| 13 | * - error bars |
| 14 | * - dygraphs attribute system |
| 15 | */ |
| 16 | |
| 17 | /** |
| 18 | * The DygraphCanvasRenderer class does the actual rendering of the chart onto |
| 19 | * a canvas. It's based on PlotKit.CanvasRenderer. |
| 20 | * @param {Object} element The canvas to attach to |
| 21 | * @param {Object} elementContext The 2d context of the canvas (injected so it |
| 22 | * can be mocked for testing.) |
| 23 | * @param {Layout} layout The DygraphLayout object for this graph. |
| 24 | * @constructor |
| 25 | */ |
| 26 | |
| 27 | /*jshint globalstrict: true */ |
| 28 | /*global Dygraph:false,RGBColor:false */ |
| 29 | "use strict"; |
| 30 | |
| 31 | |
| 32 | /** |
| 33 | * @constructor |
| 34 | * |
| 35 | * This gets called when there are "new points" to chart. This is generally the |
| 36 | * case when the underlying data being charted has changed. It is _not_ called |
| 37 | * in the common case that the user has zoomed or is panning the view. |
| 38 | * |
| 39 | * The chart canvas has already been created by the Dygraph object. The |
| 40 | * renderer simply gets a drawing context. |
| 41 | * |
| 42 | * @param {Dyraph} dygraph The chart to which this renderer belongs. |
| 43 | * @param {Canvas} element The <canvas> DOM element on which to draw. |
| 44 | * @param {CanvasRenderingContext2D} elementContext The drawing context. |
| 45 | * @param {DygraphLayout} layout The chart's DygraphLayout object. |
| 46 | * |
| 47 | * TODO(danvk): remove the elementContext property. |
| 48 | */ |
| 49 | var DygraphCanvasRenderer = function(dygraph, element, elementContext, layout) { |
| 50 | this.dygraph_ = dygraph; |
| 51 | |
| 52 | this.layout = layout; |
| 53 | this.element = element; |
| 54 | this.elementContext = elementContext; |
| 55 | this.container = this.element.parentNode; |
| 56 | |
| 57 | this.height = this.element.height; |
| 58 | this.width = this.element.width; |
| 59 | |
| 60 | // --- check whether everything is ok before we return |
| 61 | if (!this.isIE && !(DygraphCanvasRenderer.isSupported(this.element))) |
| 62 | throw "Canvas is not supported."; |
| 63 | |
| 64 | // internal state |
| 65 | this.area = layout.getPlotArea(); |
| 66 | this.container.style.position = "relative"; |
| 67 | this.container.style.width = this.width + "px"; |
| 68 | |
| 69 | // Set up a clipping area for the canvas (and the interaction canvas). |
| 70 | // This ensures that we don't overdraw. |
| 71 | if (this.dygraph_.isUsingExcanvas_) { |
| 72 | this._createIEClipArea(); |
| 73 | } else { |
| 74 | // on Android 3 and 4, setting a clipping area on a canvas prevents it from |
| 75 | // displaying anything. |
| 76 | if (!Dygraph.isAndroid()) { |
| 77 | var ctx = this.dygraph_.canvas_ctx_; |
| 78 | ctx.beginPath(); |
| 79 | ctx.rect(this.area.x, this.area.y, this.area.w, this.area.h); |
| 80 | ctx.clip(); |
| 81 | |
| 82 | ctx = this.dygraph_.hidden_ctx_; |
| 83 | ctx.beginPath(); |
| 84 | ctx.rect(this.area.x, this.area.y, this.area.w, this.area.h); |
| 85 | ctx.clip(); |
| 86 | } |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | DygraphCanvasRenderer.prototype.attr_ = function(x) { |
| 91 | return this.dygraph_.attr_(x); |
| 92 | }; |
| 93 | |
| 94 | /** |
| 95 | * Clears out all chart content and DOM elements. |
| 96 | * This is called immediately before render() on every frame, including |
| 97 | * during zooms and pans. |
| 98 | * @private |
| 99 | */ |
| 100 | DygraphCanvasRenderer.prototype.clear = function() { |
| 101 | var context; |
| 102 | if (this.isIE) { |
| 103 | // VML takes a while to start up, so we just poll every this.IEDelay |
| 104 | try { |
| 105 | if (this.clearDelay) { |
| 106 | this.clearDelay.cancel(); |
| 107 | this.clearDelay = null; |
| 108 | } |
| 109 | context = this.elementContext; |
| 110 | } |
| 111 | catch (e) { |
| 112 | // TODO(danvk): this is broken, since MochiKit.Async is gone. |
| 113 | // this.clearDelay = MochiKit.Async.wait(this.IEDelay); |
| 114 | // this.clearDelay.addCallback(bind(this.clear, this)); |
| 115 | return; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | context = this.elementContext; |
| 120 | context.clearRect(0, 0, this.width, this.height); |
| 121 | }; |
| 122 | |
| 123 | /** |
| 124 | * Checks whether the browser supports the <canvas> tag. |
| 125 | * @private |
| 126 | */ |
| 127 | DygraphCanvasRenderer.isSupported = function(canvasName) { |
| 128 | var canvas = null; |
| 129 | try { |
| 130 | if (typeof(canvasName) == 'undefined' || canvasName === null) { |
| 131 | canvas = document.createElement("canvas"); |
| 132 | } else { |
| 133 | canvas = canvasName; |
| 134 | } |
| 135 | canvas.getContext("2d"); |
| 136 | } |
| 137 | catch (e) { |
| 138 | var ie = navigator.appVersion.match(/MSIE (\d\.\d)/); |
| 139 | var opera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1); |
| 140 | if ((!ie) || (ie[1] < 6) || (opera)) |
| 141 | return false; |
| 142 | return true; |
| 143 | } |
| 144 | return true; |
| 145 | }; |
| 146 | |
| 147 | /** |
| 148 | * This method is responsible for drawing everything on the chart, including |
| 149 | * lines, error bars, fills and axes. |
| 150 | * It is called immediately after clear() on every frame, including during pans |
| 151 | * and zooms. |
| 152 | * @private |
| 153 | */ |
| 154 | DygraphCanvasRenderer.prototype.render = function() { |
| 155 | this._renderLineChart(); |
| 156 | }; |
| 157 | |
| 158 | DygraphCanvasRenderer.prototype._createIEClipArea = function() { |
| 159 | var className = 'dygraph-clip-div'; |
| 160 | var graphDiv = this.dygraph_.graphDiv; |
| 161 | |
| 162 | // Remove old clip divs. |
| 163 | for (var i = graphDiv.childNodes.length-1; i >= 0; i--) { |
| 164 | if (graphDiv.childNodes[i].className == className) { |
| 165 | graphDiv.removeChild(graphDiv.childNodes[i]); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | // Determine background color to give clip divs. |
| 170 | var backgroundColor = document.bgColor; |
| 171 | var element = this.dygraph_.graphDiv; |
| 172 | while (element != document) { |
| 173 | var bgcolor = element.currentStyle.backgroundColor; |
| 174 | if (bgcolor && bgcolor != 'transparent') { |
| 175 | backgroundColor = bgcolor; |
| 176 | break; |
| 177 | } |
| 178 | element = element.parentNode; |
| 179 | } |
| 180 | |
| 181 | function createClipDiv(area) { |
| 182 | if (area.w === 0 || area.h === 0) { |
| 183 | return; |
| 184 | } |
| 185 | var elem = document.createElement('div'); |
| 186 | elem.className = className; |
| 187 | elem.style.backgroundColor = backgroundColor; |
| 188 | elem.style.position = 'absolute'; |
| 189 | elem.style.left = area.x + 'px'; |
| 190 | elem.style.top = area.y + 'px'; |
| 191 | elem.style.width = area.w + 'px'; |
| 192 | elem.style.height = area.h + 'px'; |
| 193 | graphDiv.appendChild(elem); |
| 194 | } |
| 195 | |
| 196 | var plotArea = this.area; |
| 197 | // Left side |
| 198 | createClipDiv({ |
| 199 | x:0, y:0, |
| 200 | w:plotArea.x, |
| 201 | h:this.height |
| 202 | }); |
| 203 | |
| 204 | // Top |
| 205 | createClipDiv({ |
| 206 | x: plotArea.x, y: 0, |
| 207 | w: this.width - plotArea.x, |
| 208 | h: plotArea.y |
| 209 | }); |
| 210 | |
| 211 | // Right side |
| 212 | createClipDiv({ |
| 213 | x: plotArea.x + plotArea.w, y: 0, |
| 214 | w: this.width-plotArea.x - plotArea.w, |
| 215 | h: this.height |
| 216 | }); |
| 217 | |
| 218 | // Bottom |
| 219 | createClipDiv({ |
| 220 | x: plotArea.x, |
| 221 | y: plotArea.y + plotArea.h, |
| 222 | w: this.width - plotArea.x, |
| 223 | h: this.height - plotArea.h - plotArea.y |
| 224 | }); |
| 225 | }; |
| 226 | |
| 227 | |
| 228 | /** |
| 229 | * Returns a predicate to be used with an iterator, which will |
| 230 | * iterate over points appropriately, depending on whether |
| 231 | * connectSeparatedPoints is true. When it's false, the predicate will |
| 232 | * skip over points with missing yVals. |
| 233 | */ |
| 234 | DygraphCanvasRenderer._getIteratorPredicate = function(connectSeparatedPoints) { |
| 235 | return connectSeparatedPoints |
| 236 | ? DygraphCanvasRenderer._predicateThatSkipsEmptyPoints |
| 237 | : null; |
| 238 | }; |
| 239 | |
| 240 | DygraphCanvasRenderer._predicateThatSkipsEmptyPoints = |
| 241 | function(array, idx) { |
| 242 | return array[idx].yval !== null; |
| 243 | }; |
| 244 | |
| 245 | /** |
| 246 | * |
| 247 | * @private |
| 248 | */ |
| 249 | DygraphCanvasRenderer.prototype._drawStyledLine = function( |
| 250 | ctx, setIdx, setName, color, strokeWidth, strokePattern, drawPoints, |
| 251 | drawPointCallback, pointSize) { |
| 252 | // TODO(konigsberg): Compute attributes outside this method call. |
| 253 | var stepPlot = this.attr_("stepPlot"); |
| 254 | if (!Dygraph.isArrayLike(strokePattern)) { |
| 255 | strokePattern = null; |
| 256 | } |
| 257 | var drawGapPoints = this.dygraph_.attr_('drawGapEdgePoints', setName); |
| 258 | |
| 259 | var points = this.layout.points[setIdx]; |
| 260 | var iter = Dygraph.createIterator(points, 0, points.length, |
| 261 | DygraphCanvasRenderer._getIteratorPredicate( |
| 262 | this.attr_("connectSeparatedPoints"))); |
| 263 | |
| 264 | var stroking = strokePattern && (strokePattern.length >= 2); |
| 265 | |
| 266 | ctx.save(); |
| 267 | if (stroking) { |
| 268 | ctx.installPattern(strokePattern); |
| 269 | } |
| 270 | |
| 271 | var pointsOnLine = this._drawSeries(ctx, iter, strokeWidth, pointSize, drawPoints, drawGapPoints, stepPlot, color); |
| 272 | this._drawPointsOnLine(ctx, pointsOnLine, drawPointCallback, setName, color, pointSize); |
| 273 | |
| 274 | if (stroking) { |
| 275 | ctx.uninstallPattern(); |
| 276 | } |
| 277 | |
| 278 | ctx.restore(); |
| 279 | }; |
| 280 | |
| 281 | DygraphCanvasRenderer.prototype._drawPointsOnLine = function(ctx, pointsOnLine, drawPointCallback, setName, color, pointSize) { |
| 282 | for (var idx = 0; idx < pointsOnLine.length; idx++) { |
| 283 | var cb = pointsOnLine[idx]; |
| 284 | ctx.save(); |
| 285 | drawPointCallback( |
| 286 | this.dygraph_, setName, ctx, cb[0], cb[1], color, pointSize); |
| 287 | ctx.restore(); |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | DygraphCanvasRenderer.prototype._drawSeries = function( |
| 292 | ctx, iter, strokeWidth, pointSize, drawPoints, drawGapPoints, |
| 293 | stepPlot, color) { |
| 294 | |
| 295 | var prevCanvasX = null; |
| 296 | var prevCanvasY = null; |
| 297 | var nextCanvasY = null; |
| 298 | var isIsolated; // true if this point is isolated (no line segments) |
| 299 | var point; // the point being processed in the while loop |
| 300 | var pointsOnLine = []; // Array of [canvasx, canvasy] pairs. |
| 301 | var first = true; // the first cycle through the while loop |
| 302 | |
| 303 | ctx.beginPath(); |
| 304 | ctx.strokeStyle = color; |
| 305 | ctx.lineWidth = strokeWidth; |
| 306 | |
| 307 | // NOTE: we break the iterator's encapsulation here for about a 25% speedup. |
| 308 | var arr = iter.array_; |
| 309 | var limit = iter.end_; |
| 310 | var predicate = iter.predicate_; |
| 311 | |
| 312 | for (var i = iter.start_; i < limit; i++) { |
| 313 | point = arr[i]; |
| 314 | if (predicate) { |
| 315 | while (i < limit && !predicate(arr, i)) { |
| 316 | i++; |
| 317 | } |
| 318 | if (i == limit) break; |
| 319 | point = arr[i]; |
| 320 | } |
| 321 | |
| 322 | if (point.canvasy === null || point.canvasy != point.canvasy) { |
| 323 | if (stepPlot && prevCanvasX !== null) { |
| 324 | // Draw a horizontal line to the start of the missing data |
| 325 | ctx.moveTo(prevX, prevY); |
| 326 | ctx.lineTo(point.canvasx, prevY); |
| 327 | } |
| 328 | prevCanvasX = prevCanvasY = null; |
| 329 | } else { |
| 330 | isIsolated = false; |
| 331 | if (drawGapPoints || !prevCanvasX) { |
| 332 | iter.nextIdx_ = i; |
| 333 | var peek = iter.next(); |
| 334 | nextCanvasY = iter.hasNext ? iter.peek.canvasy : null; |
| 335 | |
| 336 | var isNextCanvasYNullOrNaN = nextCanvasY === null || |
| 337 | nextCanvasY != nextCanvasY; |
| 338 | isIsolated = (!prevCanvasX && isNextCanvasYNullOrNaN); |
| 339 | if (drawGapPoints) { |
| 340 | // Also consider a point to be "isolated" if it's adjacent to a |
| 341 | // null point, excluding the graph edges. |
| 342 | if ((!first && !prevCanvasX) || |
| 343 | (iter.hasNext && isNextCanvasYNullOrNaN)) { |
| 344 | isIsolated = true; |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | if (prevCanvasX !== null) { |
| 350 | if (strokeWidth) { |
| 351 | if (stepPlot) { |
| 352 | ctx.moveTo(prevCanvasX, prevCanvasY); |
| 353 | ctx.lineTo(point.canvasx, prevCanvasY); |
| 354 | prevCanvasX = point.canvasx; |
| 355 | } |
| 356 | |
| 357 | // TODO(danvk): this moveTo is rarely necessary |
| 358 | ctx.moveTo(prevCanvasX, prevCanvasY); |
| 359 | ctx.lineTo(point.canvasx, point.canvasy); |
| 360 | } |
| 361 | } |
| 362 | if (drawPoints || isIsolated) { |
| 363 | pointsOnLine.push([point.canvasx, point.canvasy]); |
| 364 | } |
| 365 | prevCanvasX = point.canvasx; |
| 366 | prevCanvasY = point.canvasy; |
| 367 | } |
| 368 | first = false; |
| 369 | } |
| 370 | ctx.stroke(); |
| 371 | return pointsOnLine; |
| 372 | }; |
| 373 | |
| 374 | DygraphCanvasRenderer.prototype._drawLine = function(ctx, i) { |
| 375 | var setNames = this.layout.setNames; |
| 376 | var setName = setNames[i]; |
| 377 | |
| 378 | var strokeWidth = this.dygraph_.attr_("strokeWidth", setName); |
| 379 | var borderWidth = this.dygraph_.attr_("strokeBorderWidth", setName); |
| 380 | var drawPointCallback = this.dygraph_.attr_("drawPointCallback", setName) || |
| 381 | Dygraph.Circles.DEFAULT; |
| 382 | |
| 383 | if (borderWidth && strokeWidth) { |
| 384 | this._drawStyledLine(ctx, i, setName, |
| 385 | this.dygraph_.attr_("strokeBorderColor", setName), |
| 386 | strokeWidth + 2 * borderWidth, |
| 387 | this.dygraph_.attr_("strokePattern", setName), |
| 388 | this.dygraph_.attr_("drawPoints", setName), |
| 389 | drawPointCallback, |
| 390 | this.dygraph_.attr_("pointSize", setName)); |
| 391 | } |
| 392 | |
| 393 | this._drawStyledLine(ctx, i, setName, |
| 394 | this.colors[setName], |
| 395 | strokeWidth, |
| 396 | this.dygraph_.attr_("strokePattern", setName), |
| 397 | this.dygraph_.attr_("drawPoints", setName), |
| 398 | drawPointCallback, |
| 399 | this.dygraph_.attr_("pointSize", setName)); |
| 400 | }; |
| 401 | |
| 402 | /** |
| 403 | * Actually draw the lines chart, including error bars. |
| 404 | * @private |
| 405 | */ |
| 406 | DygraphCanvasRenderer.prototype._renderLineChart = function() { |
| 407 | var ctx = this.elementContext; |
| 408 | var errorBars = this.attr_("errorBars") || this.attr_("customBars"); |
| 409 | var fillGraph = this.attr_("fillGraph"); |
| 410 | var i; |
| 411 | |
| 412 | var setNames = this.layout.setNames; |
| 413 | var setCount = setNames.length; |
| 414 | |
| 415 | this.colors = this.dygraph_.colorsMap_; |
| 416 | |
| 417 | // Update Points |
| 418 | // TODO(danvk): here |
| 419 | // |
| 420 | // TODO(bhs): this loop is a hot-spot for high-point-count charts. These |
| 421 | // transformations can be pushed into the canvas via linear transformation |
| 422 | // matrices. |
| 423 | // NOTE(danvk): this is trickier than it sounds at first. The transformation |
| 424 | // needs to be done before the .moveTo() and .lineTo() calls, but must be |
| 425 | // undone before the .stroke() call to ensure that the stroke width is |
| 426 | // unaffected. An alternative is to reduce the stroke width in the |
| 427 | // transformed coordinate space, but you can't specify different values for |
| 428 | // each dimension (as you can with .scale()). The speedup here is ~12%. |
| 429 | var sets = this.layout.points; |
| 430 | for (i = sets.length; i--;) { |
| 431 | var points = sets[i]; |
| 432 | for (var j = points.length; j--;) { |
| 433 | var point = points[j]; |
| 434 | point.canvasx = this.area.w * point.x + this.area.x; |
| 435 | point.canvasy = this.area.h * point.y + this.area.y; |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | // Draw any "fills", i.e. error bars or the filled area under a series. |
| 440 | // These must all be drawn before any lines, so that the main lines of a |
| 441 | // series are drawn on top. |
| 442 | if (errorBars) { |
| 443 | if (fillGraph) { |
| 444 | this.dygraph_.warn("Can't use fillGraph option with error bars"); |
| 445 | } |
| 446 | |
| 447 | ctx.save(); |
| 448 | this.drawErrorBars_(points); |
| 449 | ctx.restore(); |
| 450 | } else if (fillGraph) { |
| 451 | ctx.save(); |
| 452 | this.drawFillBars_(points); |
| 453 | ctx.restore(); |
| 454 | } |
| 455 | |
| 456 | // Drawing the lines. |
| 457 | for (i = 0; i < setCount; i += 1) { |
| 458 | this._drawLine(ctx, i); |
| 459 | } |
| 460 | }; |
| 461 | |
| 462 | /** |
| 463 | * Draws the shaded error bars/confidence intervals for each series. |
| 464 | * This happens before the center lines are drawn, since the center lines |
| 465 | * need to be drawn on top of the error bars for all series. |
| 466 | * |
| 467 | * @private |
| 468 | */ |
| 469 | DygraphCanvasRenderer.prototype.drawErrorBars_ = function(points) { |
| 470 | var ctx = this.elementContext; |
| 471 | var setNames = this.layout.setNames; |
| 472 | var setCount = setNames.length; |
| 473 | var fillAlpha = this.attr_('fillAlpha'); |
| 474 | var stepPlot = this.attr_('stepPlot'); |
| 475 | |
| 476 | var newYs; |
| 477 | |
| 478 | for (var i = 0; i < setCount; i++) { |
| 479 | var setName = setNames[i]; |
| 480 | var axis = this.dygraph_.axisPropertiesForSeries(setName); |
| 481 | var color = this.colors[setName]; |
| 482 | |
| 483 | var firstIndexInSet = this.layout.setPointsOffsets[i]; |
| 484 | var setLength = this.layout.setPointsLengths[i]; |
| 485 | |
| 486 | var iter = Dygraph.createIterator(points, firstIndexInSet, setLength, |
| 487 | DygraphCanvasRenderer._getIteratorPredicate( |
| 488 | this.attr_("connectSeparatedPoints"))); |
| 489 | |
| 490 | // setup graphics context |
| 491 | var prevX = NaN; |
| 492 | var prevY = NaN; |
| 493 | var prevYs = [-1, -1]; |
| 494 | var yscale = axis.yscale; |
| 495 | // should be same color as the lines but only 15% opaque. |
| 496 | var rgb = new RGBColor(color); |
| 497 | var err_color = |
| 498 | 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + fillAlpha + ')'; |
| 499 | ctx.fillStyle = err_color; |
| 500 | ctx.beginPath(); |
| 501 | while (iter.hasNext) { |
| 502 | var point = iter.next(); |
| 503 | if (!Dygraph.isOK(point.y)) { |
| 504 | prevX = NaN; |
| 505 | continue; |
| 506 | } |
| 507 | |
| 508 | if (stepPlot) { |
| 509 | newYs = [ point.y_bottom, point.y_top ]; |
| 510 | prevY = point.y; |
| 511 | } else { |
| 512 | newYs = [ point.y_bottom, point.y_top ]; |
| 513 | } |
| 514 | newYs[0] = this.area.h * newYs[0] + this.area.y; |
| 515 | newYs[1] = this.area.h * newYs[1] + this.area.y; |
| 516 | if (!isNaN(prevX)) { |
| 517 | if (stepPlot) { |
| 518 | ctx.moveTo(prevX, newYs[0]); |
| 519 | } else { |
| 520 | ctx.moveTo(prevX, prevYs[0]); |
| 521 | } |
| 522 | ctx.lineTo(point.canvasx, newYs[0]); |
| 523 | ctx.lineTo(point.canvasx, newYs[1]); |
| 524 | if (stepPlot) { |
| 525 | ctx.lineTo(prevX, newYs[1]); |
| 526 | } else { |
| 527 | ctx.lineTo(prevX, prevYs[1]); |
| 528 | } |
| 529 | ctx.closePath(); |
| 530 | } |
| 531 | prevYs = newYs; |
| 532 | prevX = point.canvasx; |
| 533 | } |
| 534 | ctx.fill(); |
| 535 | } |
| 536 | }; |
| 537 | |
| 538 | /** |
| 539 | * Draws the shaded regions when "fillGraph" is set. Not to be confused with |
| 540 | * error bars. |
| 541 | * |
| 542 | * @private |
| 543 | */ |
| 544 | DygraphCanvasRenderer.prototype.drawFillBars_ = function(points) { |
| 545 | var ctx = this.elementContext; |
| 546 | var setNames = this.layout.setNames; |
| 547 | var setCount = setNames.length; |
| 548 | var fillAlpha = this.attr_('fillAlpha'); |
| 549 | var stepPlot = this.attr_('stepPlot'); |
| 550 | var stackedGraph = this.attr_("stackedGraph"); |
| 551 | |
| 552 | var baseline = {}; // for stacked graphs: baseline for filling |
| 553 | var currBaseline; |
| 554 | |
| 555 | // process sets in reverse order (needed for stacked graphs) |
| 556 | for (var setIdx = setCount - 1; setIdx >= 0; setIdx--) { |
| 557 | var setName = setNames[setIdx]; |
| 558 | var color = this.colors[setName]; |
| 559 | var axis = this.dygraph_.axisPropertiesForSeries(setName); |
| 560 | var axisY = 1.0 + axis.minyval * axis.yscale; |
| 561 | if (axisY < 0.0) axisY = 0.0; |
| 562 | else if (axisY > 1.0) axisY = 1.0; |
| 563 | axisY = this.area.h * axisY + this.area.y; |
| 564 | |
| 565 | var points = this.layout.points[setIdx]; |
| 566 | var iter = Dygraph.createIterator(points, 0, points.length, |
| 567 | DygraphCanvasRenderer._getIteratorPredicate( |
| 568 | this.attr_("connectSeparatedPoints"))); |
| 569 | |
| 570 | // setup graphics context |
| 571 | var prevX = NaN; |
| 572 | var prevYs = [-1, -1]; |
| 573 | var newYs; |
| 574 | var yscale = axis.yscale; |
| 575 | // should be same color as the lines but only 15% opaque. |
| 576 | var rgb = new RGBColor(color); |
| 577 | var err_color = |
| 578 | 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + fillAlpha + ')'; |
| 579 | ctx.fillStyle = err_color; |
| 580 | ctx.beginPath(); |
| 581 | while(iter.hasNext) { |
| 582 | var point = iter.next(); |
| 583 | if (!Dygraph.isOK(point.y)) { |
| 584 | prevX = NaN; |
| 585 | continue; |
| 586 | } |
| 587 | if (stackedGraph) { |
| 588 | currBaseline = baseline[point.canvasx]; |
| 589 | var lastY; |
| 590 | if (currBaseline === undefined) { |
| 591 | lastY = axisY; |
| 592 | } else { |
| 593 | if(stepPlot) { |
| 594 | lastY = currBaseline[0]; |
| 595 | } else { |
| 596 | lastY = currBaseline; |
| 597 | } |
| 598 | } |
| 599 | newYs = [ point.canvasy, lastY ]; |
| 600 | |
| 601 | if(stepPlot) { |
| 602 | // Step plots must keep track of the top and bottom of |
| 603 | // the baseline at each point. |
| 604 | if(prevYs[0] === -1) { |
| 605 | baseline[point.canvasx] = [ point.canvasy, axisY ]; |
| 606 | } else { |
| 607 | baseline[point.canvasx] = [ point.canvasy, prevYs[0] ]; |
| 608 | } |
| 609 | } else { |
| 610 | baseline[point.canvasx] = point.canvasy; |
| 611 | } |
| 612 | |
| 613 | } else { |
| 614 | newYs = [ point.canvasy, axisY ]; |
| 615 | } |
| 616 | if (!isNaN(prevX)) { |
| 617 | ctx.moveTo(prevX, prevYs[0]); |
| 618 | |
| 619 | if (stepPlot) { |
| 620 | ctx.lineTo(point.canvasx, prevYs[0]); |
| 621 | if(currBaseline) { |
| 622 | // Draw to the bottom of the baseline |
| 623 | ctx.lineTo(point.canvasx, currBaseline[1]); |
| 624 | } else { |
| 625 | ctx.lineTo(point.canvasx, newYs[1]); |
| 626 | } |
| 627 | } else { |
| 628 | ctx.lineTo(point.canvasx, newYs[0]); |
| 629 | ctx.lineTo(point.canvasx, newYs[1]); |
| 630 | } |
| 631 | |
| 632 | ctx.lineTo(prevX, prevYs[1]); |
| 633 | ctx.closePath(); |
| 634 | } |
| 635 | prevYs = newYs; |
| 636 | prevX = point.canvasx; |
| 637 | } |
| 638 | ctx.fill(); |
| 639 | } |
| 640 | }; |