s/RGBColor/RGBColorParser in the tests directory.
[dygraphs.git] / dygraph-canvas.js
CommitLineData
88e95c46
DV
1/**
2 * @license
3 * Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
6a1aa64f
DV
6
7/**
74a5af31
DV
8 * @fileoverview Based on PlotKit.CanvasRenderer, but modified to meet the
9 * needs of dygraphs.
10 *
3df0ccf0 11 * In particular, support for:
0abfbd7e 12 * - grid overlays
3df0ccf0
DV
13 * - error bars
14 * - dygraphs attribute system
6a1aa64f
DV
15 */
16
6a1aa64f 17/**
423f5ed3
DV
18 * The DygraphCanvasRenderer class does the actual rendering of the chart onto
19 * a canvas. It's based on PlotKit.CanvasRenderer.
6a1aa64f 20 * @param {Object} element The canvas to attach to
2cf95fff
RK
21 * @param {Object} elementContext The 2d context of the canvas (injected so it
22 * can be mocked for testing.)
285a6bda 23 * @param {Layout} layout The DygraphLayout object for this graph.
74a5af31 24 * @constructor
6a1aa64f 25 */
c0f54d4f 26
758a629f 27/*jshint globalstrict: true */
a96b8ba3 28/*global Dygraph:false,RGBColorParser:false */
c0f54d4f
DV
29"use strict";
30
79253bd0 31
8cfe592f
DV
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 */
c0f54d4f 49var DygraphCanvasRenderer = function(dygraph, element, elementContext, layout) {
9317362d 50 this.dygraph_ = dygraph;
fbe31dc8 51
fbe31dc8 52 this.layout = layout;
b0c3b730 53 this.element = element;
2cf95fff 54 this.elementContext = elementContext;
fbe31dc8
DV
55 this.container = this.element.parentNode;
56
fbe31dc8
DV
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
70be5ed1 65 this.area = layout.getPlotArea();
423f5ed3
DV
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.
920208fb
PF
71 if (this.dygraph_.isUsingExcanvas_) {
72 this._createIEClipArea();
73 } else {
971870e5
DV
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();
920208fb 81
971870e5
DV
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 }
920208fb 87 }
423f5ed3
DV
88};
89
38e3d209
DV
90/**
91 * This just forwards to dygraph.attr_.
92 * TODO(danvk): remove this?
93 * @private
94 */
95DygraphCanvasRenderer.prototype.attr_ = function(name, opt_seriesName) {
96 return this.dygraph_.attr_(name, opt_seriesName);
423f5ed3
DV
97};
98
8cfe592f
DV
99/**
100 * Clears out all chart content and DOM elements.
101 * This is called immediately before render() on every frame, including
102 * during zooms and pans.
103 * @private
104 */
fbe31dc8 105DygraphCanvasRenderer.prototype.clear = function() {
758a629f 106 var context;
fbe31dc8
DV
107 if (this.isIE) {
108 // VML takes a while to start up, so we just poll every this.IEDelay
109 try {
110 if (this.clearDelay) {
111 this.clearDelay.cancel();
112 this.clearDelay = null;
113 }
758a629f 114 context = this.elementContext;
fbe31dc8
DV
115 }
116 catch (e) {
76171648 117 // TODO(danvk): this is broken, since MochiKit.Async is gone.
758a629f
DV
118 // this.clearDelay = MochiKit.Async.wait(this.IEDelay);
119 // this.clearDelay.addCallback(bind(this.clear, this));
fbe31dc8
DV
120 return;
121 }
122 }
123
758a629f 124 context = this.elementContext;
fbe31dc8 125 context.clearRect(0, 0, this.width, this.height);
fbe31dc8
DV
126};
127
8cfe592f
DV
128/**
129 * Checks whether the browser supports the <canvas> tag.
130 * @private
131 */
fbe31dc8
DV
132DygraphCanvasRenderer.isSupported = function(canvasName) {
133 var canvas = null;
134 try {
758a629f 135 if (typeof(canvasName) == 'undefined' || canvasName === null) {
b0c3b730 136 canvas = document.createElement("canvas");
758a629f 137 } else {
b0c3b730 138 canvas = canvasName;
758a629f
DV
139 }
140 canvas.getContext("2d");
fbe31dc8
DV
141 }
142 catch (e) {
143 var ie = navigator.appVersion.match(/MSIE (\d\.\d)/);
144 var opera = (navigator.userAgent.toLowerCase().indexOf("opera") != -1);
145 if ((!ie) || (ie[1] < 6) || (opera))
146 return false;
147 return true;
148 }
149 return true;
6a1aa64f 150};
6a1aa64f
DV
151
152/**
8cfe592f
DV
153 * This method is responsible for drawing everything on the chart, including
154 * lines, error bars, fills and axes.
155 * It is called immediately after clear() on every frame, including during pans
156 * and zooms.
157 * @private
6a1aa64f 158 */
285a6bda 159DygraphCanvasRenderer.prototype.render = function() {
38e3d209
DV
160 // attaches point.canvas{x,y}
161 this._updatePoints();
162
163 // actually draws the chart.
2ce09b19 164 this._renderLineChart();
fbe31dc8
DV
165};
166
920208fb
PF
167DygraphCanvasRenderer.prototype._createIEClipArea = function() {
168 var className = 'dygraph-clip-div';
169 var graphDiv = this.dygraph_.graphDiv;
170
171 // Remove old clip divs.
172 for (var i = graphDiv.childNodes.length-1; i >= 0; i--) {
173 if (graphDiv.childNodes[i].className == className) {
174 graphDiv.removeChild(graphDiv.childNodes[i]);
175 }
176 }
177
178 // Determine background color to give clip divs.
179 var backgroundColor = document.bgColor;
180 var element = this.dygraph_.graphDiv;
181 while (element != document) {
182 var bgcolor = element.currentStyle.backgroundColor;
183 if (bgcolor && bgcolor != 'transparent') {
184 backgroundColor = bgcolor;
185 break;
186 }
187 element = element.parentNode;
188 }
189
190 function createClipDiv(area) {
758a629f 191 if (area.w === 0 || area.h === 0) {
920208fb
PF
192 return;
193 }
194 var elem = document.createElement('div');
195 elem.className = className;
196 elem.style.backgroundColor = backgroundColor;
197 elem.style.position = 'absolute';
198 elem.style.left = area.x + 'px';
199 elem.style.top = area.y + 'px';
200 elem.style.width = area.w + 'px';
201 elem.style.height = area.h + 'px';
202 graphDiv.appendChild(elem);
203 }
204
205 var plotArea = this.area;
206 // Left side
758a629f
DV
207 createClipDiv({
208 x:0, y:0,
209 w:plotArea.x,
210 h:this.height
211 });
212
920208fb 213 // Top
758a629f
DV
214 createClipDiv({
215 x: plotArea.x, y: 0,
216 w: this.width - plotArea.x,
217 h: plotArea.y
218 });
219
920208fb 220 // Right side
758a629f
DV
221 createClipDiv({
222 x: plotArea.x + plotArea.w, y: 0,
223 w: this.width-plotArea.x - plotArea.w,
224 h: this.height
225 });
226
920208fb 227 // Bottom
758a629f
DV
228 createClipDiv({
229 x: plotArea.x,
230 y: plotArea.y + plotArea.h,
231 w: this.width - plotArea.x,
232 h: this.height - plotArea.h - plotArea.y
233 });
234};
fbe31dc8 235
fbe31dc8 236
ccb0001c 237/**
8722284b
RK
238 * Returns a predicate to be used with an iterator, which will
239 * iterate over points appropriately, depending on whether
240 * connectSeparatedPoints is true. When it's false, the predicate will
241 * skip over points with missing yVals.
ccb0001c 242 */
8722284b 243DygraphCanvasRenderer._getIteratorPredicate = function(connectSeparatedPoints) {
42a9ebb8
DV
244 return connectSeparatedPoints ?
245 DygraphCanvasRenderer._predicateThatSkipsEmptyPoints :
246 null;
0f20de1c 247};
8722284b
RK
248
249DygraphCanvasRenderer._predicateThatSkipsEmptyPoints =
0f20de1c
DV
250 function(array, idx) {
251 return array[idx].yval !== null;
252};
04c104d7 253
9f6db80e 254/**
38e3d209
DV
255 * Draws a line with the styles passed in and calls all the drawPointCallbacks.
256 * @param {Object} e The dictionary passed to the plotter function.
9f6db80e
DV
257 * @private
258 */
38e3d209
DV
259DygraphCanvasRenderer._drawStyledLine = function(e,
260 color, strokeWidth, strokePattern, drawPoints,
5469113b 261 drawPointCallback, pointSize) {
38e3d209 262 var g = e.dygraph;
99a77a04 263 // TODO(konigsberg): Compute attributes outside this method call.
38e3d209 264 var stepPlot = g.getOption("stepPlot"); // TODO(danvk): per-series
857a6931
KW
265 if (!Dygraph.isArrayLike(strokePattern)) {
266 strokePattern = null;
267 }
268
38e3d209
DV
269 var drawGapPoints = g.getOption('drawGapEdgePoints', e.setName);
270
271 var points = e.points;
a12a78ae 272 var iter = Dygraph.createIterator(points, 0, points.length,
9f6db80e 273 DygraphCanvasRenderer._getIteratorPredicate(
38e3d209 274 g.getOption("connectSeparatedPoints"))); // TODO(danvk): per-series?
7d1afbb9 275
fb63bf1b
DV
276 var stroking = strokePattern && (strokePattern.length >= 2);
277
38e3d209 278 var ctx = e.drawingContext;
0140347d 279 ctx.save();
fb63bf1b
DV
280 if (stroking) {
281 ctx.installPattern(strokePattern);
b843b52c 282 }
fb63bf1b 283
38e3d209
DV
284 var pointsOnLine = DygraphCanvasRenderer._drawSeries(
285 e, iter, strokeWidth, pointSize, drawPoints, drawGapPoints, stepPlot, color);
286 DygraphCanvasRenderer._drawPointsOnLine(
287 e, pointsOnLine, drawPointCallback, color, pointSize);
31f8e58b 288
fb63bf1b
DV
289 if (stroking) {
290 ctx.uninstallPattern();
291 }
b843b52c 292
fb63bf1b 293 ctx.restore();
31f8e58b
RK
294};
295
38e3d209
DV
296/**
297 * This does the actual drawing of lines on the canvas, for just one series.
298 * Returns a list of [canvasx, canvasy] pairs for points for which a
299 * drawPointCallback should be fired. These include isolated points, or all
300 * points if drawPoints=true.
301 * @param {Object} e The dictionary passed to the plotter function.
302 * @private
303 */
304DygraphCanvasRenderer._drawSeries = function(e,
305 iter, strokeWidth, pointSize, drawPoints, drawGapPoints, stepPlot, color) {
31f8e58b 306
31f8e58b
RK
307 var prevCanvasX = null;
308 var prevCanvasY = null;
309 var nextCanvasY = null;
310 var isIsolated; // true if this point is isolated (no line segments)
311 var point; // the point being processed in the while loop
b843b52c 312 var pointsOnLine = []; // Array of [canvasx, canvasy] pairs.
31f8e58b
RK
313 var first = true; // the first cycle through the while loop
314
38e3d209 315 var ctx = e.drawingContext;
0140347d
DV
316 ctx.beginPath();
317 ctx.strokeStyle = color;
318 ctx.lineWidth = strokeWidth;
31f8e58b 319
239454e2 320 // NOTE: we break the iterator's encapsulation here for about a 25% speedup.
c560c848
DV
321 var arr = iter.array_;
322 var limit = iter.end_;
323 var predicate = iter.predicate_;
324
325 for (var i = iter.start_; i < limit; i++) {
326 point = arr[i];
327 if (predicate) {
328 while (i < limit && !predicate(arr, i)) {
0f20de1c
DV
329 i++;
330 }
c560c848
DV
331 if (i == limit) break;
332 point = arr[i];
0f20de1c
DV
333 }
334
a02978e2 335 if (point.canvasy === null || point.canvasy != point.canvasy) {
31f8e58b 336 if (stepPlot && prevCanvasX !== null) {
857a6931 337 // Draw a horizontal line to the start of the missing data
42a9ebb8
DV
338 ctx.moveTo(prevCanvasX, prevCanvasY);
339 ctx.lineTo(point.canvasx, prevCanvasY);
857a6931 340 }
31f8e58b 341 prevCanvasX = prevCanvasY = null;
857a6931 342 } else {
0f20de1c
DV
343 isIsolated = false;
344 if (drawGapPoints || !prevCanvasX) {
0f20de1c 345 iter.nextIdx_ = i;
0cd1ad15 346 iter.next();
82f9b10f 347 nextCanvasY = iter.hasNext ? iter.peek.canvasy : null;
0f20de1c 348
0f20de1c
DV
349 var isNextCanvasYNullOrNaN = nextCanvasY === null ||
350 nextCanvasY != nextCanvasY;
351 isIsolated = (!prevCanvasX && isNextCanvasYNullOrNaN);
352 if (drawGapPoints) {
353 // Also consider a point to be "isolated" if it's adjacent to a
354 // null point, excluding the graph edges.
355 if ((!first && !prevCanvasX) ||
356 (iter.hasNext && isNextCanvasYNullOrNaN)) {
357 isIsolated = true;
358 }
19b84fe7
KW
359 }
360 }
0f20de1c 361
31f8e58b 362 if (prevCanvasX !== null) {
857a6931 363 if (strokeWidth) {
857a6931 364 if (stepPlot) {
0140347d
DV
365 ctx.moveTo(prevCanvasX, prevCanvasY);
366 ctx.lineTo(point.canvasx, prevCanvasY);
857a6931 367 }
239454e2 368
0140347d 369 ctx.lineTo(point.canvasx, point.canvasy);
b843b52c 370 }
9f636500
DV
371 } else {
372 ctx.moveTo(point.canvasx, point.canvasy);
b843b52c 373 }
b843b52c
RK
374 if (drawPoints || isIsolated) {
375 pointsOnLine.push([point.canvasx, point.canvasy]);
376 }
31f8e58b
RK
377 prevCanvasX = point.canvasx;
378 prevCanvasY = point.canvasy;
b843b52c 379 }
7d1afbb9 380 first = false;
b843b52c 381 }
0140347d 382 ctx.stroke();
31f8e58b 383 return pointsOnLine;
857a6931
KW
384};
385
38e3d209
DV
386/**
387 * This fires the drawPointCallback functions, which draw dots on the points by
388 * default. This gets used when the "drawPoints" option is set, or when there
389 * are isolated points.
390 * @param {Object} e The dictionary passed to the plotter function.
391 * @private
392 */
393DygraphCanvasRenderer._drawPointsOnLine = function(
394 e, pointsOnLine, drawPointCallback, color, pointSize) {
395 var ctx = e.drawingContext;
396 for (var idx = 0; idx < pointsOnLine.length; idx++) {
397 var cb = pointsOnLine[idx];
398 ctx.save();
399 drawPointCallback(
400 e.dygraph, e.setName, ctx, cb[0], cb[1], color, pointSize);
401 ctx.restore();
857a6931 402 }
42a9ebb8 403};
ce49c2fa 404
6a1aa64f 405/**
38e3d209 406 * Attaches canvas coordinates to the points array.
758a629f 407 * @private
6a1aa64f 408 */
38e3d209 409DygraphCanvasRenderer.prototype._updatePoints = function() {
ff00d3e2
DV
410 // Update Points
411 // TODO(danvk): here
b843b52c
RK
412 //
413 // TODO(bhs): this loop is a hot-spot for high-point-count charts. These
414 // transformations can be pushed into the canvas via linear transformation
415 // matrices.
e60234cd
DV
416 // NOTE(danvk): this is trickier than it sounds at first. The transformation
417 // needs to be done before the .moveTo() and .lineTo() calls, but must be
418 // undone before the .stroke() call to ensure that the stroke width is
419 // unaffected. An alternative is to reduce the stroke width in the
420 // transformed coordinate space, but you can't specify different values for
421 // each dimension (as you can with .scale()). The speedup here is ~12%.
a12a78ae 422 var sets = this.layout.points;
38e3d209 423 for (var i = sets.length; i--;) {
a12a78ae
DV
424 var points = sets[i];
425 for (var j = points.length; j--;) {
426 var point = points[j];
427 point.canvasx = this.area.w * point.x + this.area.x;
428 point.canvasy = this.area.h * point.y + this.area.y;
429 }
6a1aa64f 430 }
38e3d209 431};
6a1aa64f 432
38e3d209
DV
433/**
434 * Add canvas Actually draw the lines chart, including error bars.
435 * If opt_seriesName is specified, only that series will be drawn.
436 * (This is used for expedited redrawing with highlightSeriesOpts)
437 * Lines are typically drawn in the non-interactive dygraph canvas. If opt_ctx
438 * is specified, they can be drawn elsewhere.
439 *
440 * This function can only be called if DygraphLayout's points array has been
441 * updated with canvas{x,y} attributes, i.e. by
442 * DygraphCanvasRenderer._updatePoints.
443 * @private
444 */
445DygraphCanvasRenderer.prototype._renderLineChart = function(opt_seriesName, opt_ctx) {
446 var ctx = opt_ctx || this.elementContext;
38e3d209 447 var i;
6a834bbb 448
38e3d209
DV
449 var sets = this.layout.points;
450 var setNames = this.layout.setNames;
42a9ebb8 451 var setName;
38e3d209
DV
452
453 this.colors = this.dygraph_.colorsMap_;
454
455 // Determine which series have specialized plotters.
456 var plotter_attr = this.attr_("plotter");
457 var plotters = plotter_attr;
458 if (!Dygraph.isArrayLike(plotters)) {
459 plotters = [plotters];
80aaae18
DV
460 }
461
38e3d209
DV
462 var setPlotters = {}; // series name -> plotter fn.
463 for (i = 0; i < setNames.length; i++) {
42a9ebb8 464 setName = setNames[i];
38e3d209
DV
465 var setPlotter = this.attr_("plotter", setName);
466 if (setPlotter == plotter_attr) continue; // not specialized.
467
468 setPlotters[setName] = setPlotter;
469 }
470
471 for (i = 0; i < plotters.length; i++) {
472 var plotter = plotters[i];
473 var is_last = (i == plotters.length - 1);
474
475 for (var j = 0; j < sets.length; j++) {
42a9ebb8 476 setName = setNames[j];
38e3d209
DV
477 if (opt_seriesName && setName != opt_seriesName) continue;
478
479 var points = sets[j];
480
481 // Only throw in the specialized plotters on the last iteration.
482 var p = plotter;
483 if (setName in setPlotters) {
484 if (is_last) {
485 p = setPlotters[setName];
486 } else {
487 // Don't use the standard plotters in this case.
488 continue;
489 }
490 }
491
492 var color = this.colors[setName];
493 var strokeWidth = this.dygraph_.getOption("strokeWidth", setName);
494
495 ctx.save();
496 ctx.strokeStyle = color;
497 ctx.lineWidth = strokeWidth;
498 p({
499 points: points,
500 setName: setName,
501 drawingContext: ctx,
502 color: color,
503 strokeWidth: strokeWidth,
504 dygraph: this.dygraph_,
505 axis: this.dygraph_.axisPropertiesForSeries(setName),
506 plotArea: this.area,
507 seriesIndex: j,
508 seriesCount: sets.length,
509 allSeriesPoints: sets
510 });
511 ctx.restore();
512 }
513 }
514};
515
516/**
517 * Standard plotters. These may be used by clients via Dygraph.Plotters.
518 * See comments there for more details.
519 */
520DygraphCanvasRenderer._Plotters = {
521 linePlotter: function(e) {
522 DygraphCanvasRenderer._linePlotter(e);
523 },
524
525 fillPlotter: function(e) {
526 DygraphCanvasRenderer._fillPlotter(e);
527 },
528
529 errorPlotter: function(e) {
530 DygraphCanvasRenderer._errorPlotter(e);
80aaae18 531 }
6a1aa64f 532};
79253bd0 533
01a14b85 534/**
38e3d209
DV
535 * Plotter which draws the central lines for a series.
536 * @private
537 */
538DygraphCanvasRenderer._linePlotter = function(e) {
539 var g = e.dygraph;
540 var setName = e.setName;
541 var strokeWidth = e.strokeWidth;
542
543 // TODO(danvk): Check if there's any performance impact of just calling
544 // getOption() inside of _drawStyledLine. Passing in so many parameters makes
545 // this code a bit nasty.
546 var borderWidth = g.getOption("strokeBorderWidth", setName);
547 var drawPointCallback = g.getOption("drawPointCallback", setName) ||
548 Dygraph.Circles.DEFAULT;
549 var strokePattern = g.getOption("strokePattern", setName);
550 var drawPoints = g.getOption("drawPoints", setName);
551 var pointSize = g.getOption("pointSize", setName);
552
553 if (borderWidth && strokeWidth) {
554 DygraphCanvasRenderer._drawStyledLine(e,
555 g.getOption("strokeBorderColor", setName),
556 strokeWidth + 2 * borderWidth,
557 strokePattern,
558 drawPoints,
559 drawPointCallback,
560 pointSize
561 );
562 }
563
564 DygraphCanvasRenderer._drawStyledLine(e,
565 e.color,
566 strokeWidth,
567 strokePattern,
568 drawPoints,
569 drawPointCallback,
570 pointSize
571 );
42a9ebb8 572};
38e3d209
DV
573
574/**
01a14b85
DV
575 * Draws the shaded error bars/confidence intervals for each series.
576 * This happens before the center lines are drawn, since the center lines
577 * need to be drawn on top of the error bars for all series.
01a14b85
DV
578 * @private
579 */
38e3d209
DV
580DygraphCanvasRenderer._errorPlotter = function(e) {
581 var g = e.dygraph;
e2d8db3a 582 var setName = e.setName;
38e3d209
DV
583 var errorBars = g.getOption("errorBars") || g.getOption("customBars");
584 if (!errorBars) return;
585
e2d8db3a 586 var fillGraph = g.getOption("fillGraph", setName);
38e3d209
DV
587 if (fillGraph) {
588 g.warn("Can't use fillGraph option with error bars");
589 }
6a6439da 590
38e3d209
DV
591 var ctx = e.drawingContext;
592 var color = e.color;
593 var fillAlpha = g.getOption('fillAlpha', setName);
594 var stepPlot = g.getOption('stepPlot'); // TODO(danvk): per-series
38e3d209 595 var points = e.points;
6a6439da 596
38e3d209
DV
597 var iter = Dygraph.createIterator(points, 0, points.length,
598 DygraphCanvasRenderer._getIteratorPredicate(
599 g.getOption("connectSeparatedPoints")));
6a6439da 600
38e3d209 601 var newYs;
6a6439da 602
38e3d209
DV
603 // setup graphics context
604 var prevX = NaN;
605 var prevY = NaN;
606 var prevYs = [-1, -1];
38e3d209 607 // should be same color as the lines but only 15% opaque.
a96b8ba3 608 var rgb = new RGBColorParser(color);
38e3d209
DV
609 var err_color =
610 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + fillAlpha + ')';
611 ctx.fillStyle = err_color;
612 ctx.beginPath();
cf89eeed
DV
613
614 var isNullUndefinedOrNaN = function(x) {
615 return (x === null ||
616 x === undefined ||
617 isNaN(x));
618 };
619
38e3d209
DV
620 while (iter.hasNext) {
621 var point = iter.next();
cf89eeed
DV
622 if ((!stepPlot && isNullUndefinedOrNaN(point.y)) ||
623 (stepPlot && !isNaN(prevY) && isNullUndefinedOrNaN(prevY))) {
38e3d209
DV
624 prevX = NaN;
625 continue;
626 }
6a6439da 627
38e3d209
DV
628 if (stepPlot) {
629 newYs = [ point.y_bottom, point.y_top ];
630 prevY = point.y;
631 } else {
632 newYs = [ point.y_bottom, point.y_top ];
633 }
634 newYs[0] = e.plotArea.h * newYs[0] + e.plotArea.y;
635 newYs[1] = e.plotArea.h * newYs[1] + e.plotArea.y;
636 if (!isNaN(prevX)) {
a5701188 637 if (stepPlot) {
38e3d209 638 ctx.moveTo(prevX, prevYs[0]);
82dd90c5 639 ctx.lineTo(point.canvasx, prevYs[0]);
640 ctx.lineTo(point.canvasx, prevYs[1]);
38e3d209 641 } else {
82dd90c5 642 ctx.moveTo(prevX, prevYs[0]);
643 ctx.lineTo(point.canvasx, newYs[0]);
644 ctx.lineTo(point.canvasx, newYs[1]);
6a6439da 645 }
82dd90c5 646 ctx.lineTo(prevX, prevYs[1]);
38e3d209 647 ctx.closePath();
6a6439da 648 }
38e3d209
DV
649 prevYs = newYs;
650 prevX = point.canvasx;
6a6439da 651 }
38e3d209 652 ctx.fill();
42a9ebb8 653};
6a6439da 654
79253bd0 655/**
01a14b85
DV
656 * Draws the shaded regions when "fillGraph" is set. Not to be confused with
657 * error bars.
658 *
38e3d209
DV
659 * For stacked charts, it's more convenient to handle all the series
660 * simultaneously. So this plotter plots all the points on the first series
661 * it's asked to draw, then ignores all the other series.
662 *
01a14b85
DV
663 * @private
664 */
38e3d209 665DygraphCanvasRenderer._fillPlotter = function(e) {
38e3d209
DV
666 // We'll handle all the series at once, not one-by-one.
667 if (e.seriesIndex !== 0) return;
668
e2d8db3a 669 var g = e.dygraph;
38e3d209 670 var setNames = g.getLabels().slice(1); // remove x-axis
e2d8db3a 671
38e3d209
DV
672 // getLabels() includes names for invisible series, which are not included in
673 // allSeriesPoints. We remove those to make the two match.
674 // TODO(danvk): provide a simpler way to get this information.
675 for (var i = setNames.length; i >= 0; i--) {
676 if (!g.visibility()[i]) setNames.splice(i, 1);
677 }
678
e2d8db3a
DV
679 var anySeriesFilled = (function() {
680 for (var i = 0; i < setNames.length; i++) {
681 if (g.getOption("fillGraph", setNames[i])) return true;
682 }
683 return false;
684 })();
685
686 if (!anySeriesFilled) return;
687
688 var ctx = e.drawingContext;
689 var area = e.plotArea;
690 var sets = e.allSeriesPoints;
691 var setCount = sets.length;
692
38e3d209
DV
693 var fillAlpha = g.getOption('fillAlpha');
694 var stepPlot = g.getOption('stepPlot');
695 var stackedGraph = g.getOption("stackedGraph");
696 var colors = g.getColors();
01a14b85
DV
697
698 var baseline = {}; // for stacked graphs: baseline for filling
699 var currBaseline;
700
701 // process sets in reverse order (needed for stacked graphs)
9e85a8f4
DV
702 for (var setIdx = setCount - 1; setIdx >= 0; setIdx--) {
703 var setName = setNames[setIdx];
e2d8db3a
DV
704 if (!g.getOption('fillGraph', setName)) continue;
705
38e3d209
DV
706 var color = colors[setIdx];
707 var axis = g.axisPropertiesForSeries(setName);
01a14b85
DV
708 var axisY = 1.0 + axis.minyval * axis.yscale;
709 if (axisY < 0.0) axisY = 0.0;
710 else if (axisY > 1.0) axisY = 1.0;
38e3d209 711 axisY = area.h * axisY + area.y;
01a14b85 712
38e3d209 713 var points = sets[setIdx];
9e85a8f4 714 var iter = Dygraph.createIterator(points, 0, points.length,
01a14b85 715 DygraphCanvasRenderer._getIteratorPredicate(
38e3d209 716 g.getOption("connectSeparatedPoints")));
01a14b85
DV
717
718 // setup graphics context
719 var prevX = NaN;
720 var prevYs = [-1, -1];
721 var newYs;
01a14b85 722 // should be same color as the lines but only 15% opaque.
a96b8ba3 723 var rgb = new RGBColorParser(color);
01a14b85
DV
724 var err_color =
725 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + fillAlpha + ')';
726 ctx.fillStyle = err_color;
727 ctx.beginPath();
728 while(iter.hasNext) {
729 var point = iter.next();
16febe6b
DV
730 if (!Dygraph.isOK(point.y)) {
731 prevX = NaN;
732 continue;
733 }
734 if (stackedGraph) {
735 currBaseline = baseline[point.canvasx];
736 var lastY;
737 if (currBaseline === undefined) {
738 lastY = axisY;
739 } else {
740 if(stepPlot) {
741 lastY = currBaseline[0];
01a14b85 742 } else {
16febe6b 743 lastY = currBaseline;
01a14b85 744 }
16febe6b
DV
745 }
746 newYs = [ point.canvasy, lastY ];
01a14b85 747
16febe6b
DV
748 if(stepPlot) {
749 // Step plots must keep track of the top and bottom of
750 // the baseline at each point.
751 if(prevYs[0] === -1) {
752 baseline[point.canvasx] = [ point.canvasy, axisY ];
01a14b85 753 } else {
16febe6b 754 baseline[point.canvasx] = [ point.canvasy, prevYs[0] ];
01a14b85 755 }
01a14b85 756 } else {
16febe6b 757 baseline[point.canvasx] = point.canvasy;
01a14b85 758 }
01a14b85 759
16febe6b
DV
760 } else {
761 newYs = [ point.canvasy, axisY ];
762 }
763 if (!isNaN(prevX)) {
764 ctx.moveTo(prevX, prevYs[0]);
765
766 if (stepPlot) {
767 ctx.lineTo(point.canvasx, prevYs[0]);
768 if(currBaseline) {
769 // Draw to the bottom of the baseline
770 ctx.lineTo(point.canvasx, currBaseline[1]);
01a14b85 771 } else {
01a14b85
DV
772 ctx.lineTo(point.canvasx, newYs[1]);
773 }
16febe6b
DV
774 } else {
775 ctx.lineTo(point.canvasx, newYs[0]);
776 ctx.lineTo(point.canvasx, newYs[1]);
01a14b85 777 }
16febe6b
DV
778
779 ctx.lineTo(prevX, prevYs[1]);
780 ctx.closePath();
01a14b85 781 }
16febe6b
DV
782 prevYs = newYs;
783 prevX = point.canvasx;
01a14b85
DV
784 }
785 ctx.fill();
786 }
787};