zoom.html needed a little love.
[dygraphs.git] / dygraph.js
CommitLineData
6a1aa64f
DV
1// Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
2// All Rights Reserved.
3
4/**
5 * @fileoverview Creates an interactive, zoomable graph based on a CSV file or
285a6bda
DV
6 * string. Dygraph can handle multiple series with or without error bars. The
7 * date/value ranges will be automatically set. Dygraph uses the
6a1aa64f
DV
8 * <canvas> tag, so it only works in FF1.5+.
9 * @author danvdk@gmail.com (Dan Vanderkam)
10
11 Usage:
12 <div id="graphdiv" style="width:800px; height:500px;"></div>
13 <script type="text/javascript">
285a6bda
DV
14 new Dygraph(document.getElementById("graphdiv"),
15 "datafile.csv", // CSV file with headers
16 { }); // options
6a1aa64f
DV
17 </script>
18
19 The CSV file is of the form
20
285a6bda 21 Date,SeriesA,SeriesB,SeriesC
6a1aa64f
DV
22 YYYYMMDD,A1,B1,C1
23 YYYYMMDD,A2,B2,C2
24
6a1aa64f
DV
25 If the 'errorBars' option is set in the constructor, the input should be of
26 the form
27
285a6bda 28 Date,SeriesA,SeriesB,...
6a1aa64f
DV
29 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
30 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
31
32 If the 'fractions' option is set, the input should be of the form:
33
285a6bda 34 Date,SeriesA,SeriesB,...
6a1aa64f
DV
35 YYYYMMDD,A1/B1,A2/B2,...
36 YYYYMMDD,A1/B1,A2/B2,...
37
38 And error bars will be calculated automatically using a binomial distribution.
39
285a6bda 40 For further documentation and examples, see http://www.danvk.org/dygraphs
6a1aa64f
DV
41
42 */
43
44/**
45 * An interactive, zoomable graph
46 * @param {String | Function} file A file containing CSV data or a function that
47 * returns this data. The expected format for each line is
48 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
49 * YYYYMMDD,val1,stddev1,val2,stddev2,...
6a1aa64f
DV
50 * @param {Object} attrs Various other attributes, e.g. errorBars determines
51 * whether the input data contains error ranges.
52 */
285a6bda
DV
53Dygraph = function(div, data, opts) {
54 if (arguments.length > 0) {
55 if (arguments.length == 4) {
56 // Old versions of dygraphs took in the series labels as a constructor
57 // parameter. This doesn't make sense anymore, but it's easy to continue
58 // to support this usage.
59 this.warn("Using deprecated four-argument dygraph constructor");
60 this.__old_init__(div, data, arguments[2], arguments[3]);
61 } else {
62 this.__init__(div, data, opts);
63 }
64 }
6a1aa64f
DV
65};
66
285a6bda
DV
67Dygraph.NAME = "Dygraph";
68Dygraph.VERSION = "1.2";
69Dygraph.__repr__ = function() {
6a1aa64f
DV
70 return "[" + this.NAME + " " + this.VERSION + "]";
71};
285a6bda 72Dygraph.toString = function() {
6a1aa64f
DV
73 return this.__repr__();
74};
75
76// Various default values
285a6bda
DV
77Dygraph.DEFAULT_ROLL_PERIOD = 1;
78Dygraph.DEFAULT_WIDTH = 480;
79Dygraph.DEFAULT_HEIGHT = 320;
80Dygraph.AXIS_LINE_WIDTH = 0.3;
6a1aa64f 81
8e4a6af3 82// Default attribute values.
285a6bda 83Dygraph.DEFAULT_ATTRS = {
a9fc39ab 84 highlightCircleSize: 3,
8e4a6af3 85 pixelsPerXLabel: 60,
c6336f04 86 pixelsPerYLabel: 30,
285a6bda 87
8e4a6af3
DV
88 labelsDivWidth: 250,
89 labelsDivStyles: {
90 // TODO(danvk): move defaults from createStatusMessage_ here.
285a6bda
DV
91 },
92 labelsSeparateLines: false,
bcd3ebf0 93 labelsShowZeroValues: true,
285a6bda 94 labelsKMB: false,
afefbcdb 95 labelsKMG2: false,
d160cc3b 96 showLabelsOnHighlight: true,
12e4c741 97
029da4b6 98 yValueFormatter: function(x) { return Dygraph.round_(x, 2); },
285a6bda
DV
99
100 strokeWidth: 1.0,
8e4a6af3 101
8846615a
DV
102 axisTickSize: 3,
103 axisLabelFontSize: 14,
104 xAxisLabelWidth: 50,
105 yAxisLabelWidth: 50,
bf640e56 106 xAxisLabelFormatter: Dygraph.dateAxisFormatter,
8846615a 107 rightGap: 5,
285a6bda
DV
108
109 showRoller: false,
110 xValueFormatter: Dygraph.dateString_,
111 xValueParser: Dygraph.dateParser,
112 xTicker: Dygraph.dateTicker,
113
3d67f03b
DV
114 delimiter: ',',
115
ff00d3e2 116 logScale: false,
285a6bda
DV
117 sigma: 2.0,
118 errorBars: false,
119 fractions: false,
120 wilsonInterval: true, // only relevant if fractions is true
5954ef32 121 customBars: false,
43af96e7
NK
122 fillGraph: false,
123 fillAlpha: 0.15,
f032c51d 124 connectSeparatedPoints: false,
43af96e7
NK
125
126 stackedGraph: false,
afdc483f
NN
127 hideOverlayOnMouseOut: true,
128
129 stepPlot: false
285a6bda
DV
130};
131
132// Various logging levels.
133Dygraph.DEBUG = 1;
134Dygraph.INFO = 2;
135Dygraph.WARNING = 3;
136Dygraph.ERROR = 3;
137
5c528fa2
DV
138// Used for initializing annotation CSS rules only once.
139Dygraph.addedAnnotationCSS = false;
140
285a6bda
DV
141Dygraph.prototype.__old_init__ = function(div, file, labels, attrs) {
142 // Labels is no longer a constructor parameter, since it's typically set
143 // directly from the data source. It also conains a name for the x-axis,
144 // which the previous constructor form did not.
145 if (labels != null) {
146 var new_labels = ["Date"];
147 for (var i = 0; i < labels.length; i++) new_labels.push(labels[i]);
fc80a396 148 Dygraph.update(attrs, { 'labels': new_labels });
285a6bda
DV
149 }
150 this.__init__(div, file, attrs);
8e4a6af3
DV
151};
152
6a1aa64f 153/**
285a6bda 154 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
6a1aa64f
DV
155 * and interaction &lt;canvas&gt; inside of it. See the constructor for details
156 * on the parameters.
12e4c741 157 * @param {Element} div the Element to render the graph into.
6a1aa64f 158 * @param {String | Function} file Source data
6a1aa64f
DV
159 * @param {Object} attrs Miscellaneous other options
160 * @private
161 */
285a6bda
DV
162Dygraph.prototype.__init__ = function(div, file, attrs) {
163 // Support two-argument constructor
164 if (attrs == null) { attrs = {}; }
165
6a1aa64f 166 // Copy the important bits into the object
32988383 167 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
6a1aa64f 168 this.maindiv_ = div;
6a1aa64f 169 this.file_ = file;
285a6bda 170 this.rollPeriod_ = attrs.rollPeriod || Dygraph.DEFAULT_ROLL_PERIOD;
6a1aa64f 171 this.previousVerticalX_ = -1;
6a1aa64f 172 this.fractions_ = attrs.fractions || false;
6a1aa64f 173 this.dateWindow_ = attrs.dateWindow || null;
8b83c6cc
RK
174 // valueRange and valueWindow are similar, but not the same. valueRange is a
175 // locally-stored copy of the attribute. valueWindow starts off the same as
176 // valueRange but is impacted by zoom or pan effects. valueRange is kept
177 // around to restore the original value back to valueRange.
178 // TODO(konigsberg): There are no vertical pan effects yet, but valueWindow
179 // would change accordingly.
6a1aa64f 180 this.valueRange_ = attrs.valueRange || null;
8b83c6cc
RK
181 this.valueWindow_ = this.valueRange_;
182
6a1aa64f 183 this.wilsonInterval_ = attrs.wilsonInterval || true;
fe0b7c03 184 this.is_initial_draw_ = true;
5c528fa2 185 this.annotations_ = [];
8e4a6af3 186
f7d6278e
DV
187 // Clear the div. This ensure that, if multiple dygraphs are passed the same
188 // div, then only one will be drawn.
189 div.innerHTML = "";
190
c21d2c2d 191 // If the div isn't already sized then inherit from our attrs or
192 // give it a default size.
285a6bda 193 if (div.style.width == '') {
c21d2c2d 194 div.style.width = attrs.width || Dygraph.DEFAULT_WIDTH + "px";
285a6bda
DV
195 }
196 if (div.style.height == '') {
c21d2c2d 197 div.style.height = attrs.height || Dygraph.DEFAULT_HEIGHT + "px";
32988383 198 }
285a6bda
DV
199 this.width_ = parseInt(div.style.width, 10);
200 this.height_ = parseInt(div.style.height, 10);
c21d2c2d 201 // The div might have been specified as percent of the current window size,
202 // convert that to an appropriate number of pixels.
203 if (div.style.width.indexOf("%") == div.style.width.length - 1) {
c6f45033 204 this.width_ = div.offsetWidth;
c21d2c2d 205 }
206 if (div.style.height.indexOf("%") == div.style.height.length - 1) {
c6f45033 207 this.height_ = div.offsetHeight;
c21d2c2d 208 }
32988383 209
10a6456d
DV
210 if (this.width_ == 0) {
211 this.error("dygraph has zero width. Please specify a width in pixels.");
212 }
213 if (this.height_ == 0) {
214 this.error("dygraph has zero height. Please specify a height in pixels.");
215 }
216
344ba8c0 217 // TODO(danvk): set fillGraph to be part of attrs_ here, not user_attrs_.
43af96e7
NK
218 if (attrs['stackedGraph']) {
219 attrs['fillGraph'] = true;
220 // TODO(nikhilk): Add any other stackedGraph checks here.
221 }
222
285a6bda
DV
223 // Dygraphs has many options, some of which interact with one another.
224 // To keep track of everything, we maintain two sets of options:
225 //
c21d2c2d 226 // this.user_attrs_ only options explicitly set by the user.
285a6bda
DV
227 // this.attrs_ defaults, options derived from user_attrs_, data.
228 //
229 // Options are then accessed this.attr_('attr'), which first looks at
230 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
231 // defaults without overriding behavior that the user specifically asks for.
232 this.user_attrs_ = {};
fc80a396 233 Dygraph.update(this.user_attrs_, attrs);
6a1aa64f 234
285a6bda 235 this.attrs_ = {};
fc80a396 236 Dygraph.update(this.attrs_, Dygraph.DEFAULT_ATTRS);
6a1aa64f 237
16269f6e 238 this.boundaryIds_ = [];
6a1aa64f 239
285a6bda
DV
240 // Make a note of whether labels will be pulled from the CSV file.
241 this.labelsFromCSV_ = (this.attr_("labels") == null);
6a1aa64f 242
5c528fa2
DV
243 Dygraph.addAnnotationRule();
244
6a1aa64f
DV
245 // Create the containing DIV and other interactive elements
246 this.createInterface_();
247
738fc797 248 this.start_();
6a1aa64f
DV
249};
250
285a6bda
DV
251Dygraph.prototype.attr_ = function(name) {
252 if (typeof(this.user_attrs_[name]) != 'undefined') {
253 return this.user_attrs_[name];
254 } else if (typeof(this.attrs_[name]) != 'undefined') {
255 return this.attrs_[name];
256 } else {
257 return null;
258 }
259};
260
261// TODO(danvk): any way I can get the line numbers to be this.warn call?
262Dygraph.prototype.log = function(severity, message) {
263 if (typeof(console) != 'undefined') {
264 switch (severity) {
265 case Dygraph.DEBUG:
266 console.debug('dygraphs: ' + message);
267 break;
268 case Dygraph.INFO:
269 console.info('dygraphs: ' + message);
270 break;
271 case Dygraph.WARNING:
272 console.warn('dygraphs: ' + message);
273 break;
274 case Dygraph.ERROR:
275 console.error('dygraphs: ' + message);
276 break;
277 }
278 }
279}
280Dygraph.prototype.info = function(message) {
281 this.log(Dygraph.INFO, message);
282}
283Dygraph.prototype.warn = function(message) {
284 this.log(Dygraph.WARNING, message);
285}
286Dygraph.prototype.error = function(message) {
287 this.log(Dygraph.ERROR, message);
288}
289
6a1aa64f
DV
290/**
291 * Returns the current rolling period, as set by the user or an option.
292 * @return {Number} The number of days in the rolling window
293 */
285a6bda 294Dygraph.prototype.rollPeriod = function() {
6a1aa64f 295 return this.rollPeriod_;
76171648
DV
296};
297
599fb4ad
DV
298/**
299 * Returns the currently-visible x-range. This can be affected by zooming,
300 * panning or a call to updateOptions.
301 * Returns a two-element array: [left, right].
302 * If the Dygraph has dates on the x-axis, these will be millis since epoch.
303 */
304Dygraph.prototype.xAxisRange = function() {
305 if (this.dateWindow_) return this.dateWindow_;
306
307 // The entire chart is visible.
308 var left = this.rawData_[0][0];
309 var right = this.rawData_[this.rawData_.length - 1][0];
310 return [left, right];
311};
312
3230c662
DV
313/**
314 * Returns the currently-visible y-range. This can be affected by zooming,
315 * panning or a call to updateOptions.
316 * Returns a two-element array: [bottom, top].
317 */
318Dygraph.prototype.yAxisRange = function() {
319 return this.displayedYRange_;
320};
321
322/**
323 * Convert from data coordinates to canvas/div X/Y coordinates.
324 * Returns a two-element array: [X, Y]
325 */
326Dygraph.prototype.toDomCoords = function(x, y) {
327 var ret = [null, null];
328 var area = this.plotter_.area;
329 if (x !== null) {
330 var xRange = this.xAxisRange();
331 ret[0] = area.x + (x - xRange[0]) / (xRange[1] - xRange[0]) * area.w;
332 }
333
334 if (y !== null) {
335 var yRange = this.yAxisRange();
891ad846 336 ret[1] = area.y + (yRange[1] - y) / (yRange[1] - yRange[0]) * area.h;
3230c662
DV
337 }
338
339 return ret;
340};
341
56623f3b 342// TODO(danvk): use these functions throughout dygraphs.
3230c662
DV
343/**
344 * Convert from canvas/div coords to data coordinates.
345 * Returns a two-element array: [X, Y]
346 */
347Dygraph.prototype.toDataCoords = function(x, y) {
348 var ret = [null, null];
349 var area = this.plotter_.area;
350 if (x !== null) {
351 var xRange = this.xAxisRange();
352 ret[0] = xRange[0] + (x - area.x) / area.w * (xRange[1] - xRange[0]);
353 }
354
355 if (y !== null) {
356 var yRange = this.yAxisRange();
357 ret[1] = yRange[0] + (area.h - y) / area.h * (yRange[1] - yRange[0]);
358 }
359
360 return ret;
361};
362
e99fde05
DV
363/**
364 * Returns the number of columns (including the independent variable).
365 */
366Dygraph.prototype.numColumns = function() {
367 return this.rawData_[0].length;
368};
369
370/**
371 * Returns the number of rows (excluding any header/label row).
372 */
373Dygraph.prototype.numRows = function() {
374 return this.rawData_.length;
375};
376
377/**
378 * Returns the value in the given row and column. If the row and column exceed
379 * the bounds on the data, returns null. Also returns null if the value is
380 * missing.
381 */
382Dygraph.prototype.getValue = function(row, col) {
383 if (row < 0 || row > this.rawData_.length) return null;
384 if (col < 0 || col > this.rawData_[row].length) return null;
385
386 return this.rawData_[row][col];
387};
388
76171648
DV
389Dygraph.addEvent = function(el, evt, fn) {
390 var normed_fn = function(e) {
391 if (!e) var e = window.event;
392 fn(e);
393 };
394 if (window.addEventListener) { // Mozilla, Netscape, Firefox
395 el.addEventListener(evt, normed_fn, false);
396 } else { // IE
397 el.attachEvent('on' + evt, normed_fn);
398 }
399};
6a1aa64f 400
4c47502d
DV
401Dygraph.clipCanvas_ = function(cnv, clip) {
402 var ctx = cnv.getContext("2d");
403 ctx.beginPath();
404 ctx.rect(clip.left, clip.top, clip.width, clip.height);
405 ctx.clip();
406};
407
6a1aa64f 408/**
285a6bda 409 * Generates interface elements for the Dygraph: a containing div, a div to
6a1aa64f 410 * display the current point, and a textbox to adjust the rolling average
697e70b2 411 * period. Also creates the Renderer/Layout elements.
6a1aa64f
DV
412 * @private
413 */
285a6bda 414Dygraph.prototype.createInterface_ = function() {
6a1aa64f
DV
415 // Create the all-enclosing graph div
416 var enclosing = this.maindiv_;
417
b0c3b730
DV
418 this.graphDiv = document.createElement("div");
419 this.graphDiv.style.width = this.width_ + "px";
420 this.graphDiv.style.height = this.height_ + "px";
421 enclosing.appendChild(this.graphDiv);
422
4c47502d
DV
423 var clip = {
424 top: 0,
425 left: this.attr_("yAxisLabelWidth") + 2 * this.attr_("axisTickSize")
426 };
427 clip.width = this.width_ - clip.left - this.attr_("rightGap");
428 clip.height = this.height_ - this.attr_("axisLabelFontSize")
429 - 2 * this.attr_("axisTickSize");
430 this.clippingArea_ = clip;
431
b0c3b730 432 // Create the canvas for interactive parts of the chart.
f8cfec73 433 this.canvas_ = Dygraph.createCanvas();
b0c3b730
DV
434 this.canvas_.style.position = "absolute";
435 this.canvas_.width = this.width_;
436 this.canvas_.height = this.height_;
f8cfec73
DV
437 this.canvas_.style.width = this.width_ + "px"; // for IE
438 this.canvas_.style.height = this.height_ + "px"; // for IE
b0c3b730
DV
439
440 // ... and for static parts of the chart.
6a1aa64f 441 this.hidden_ = this.createPlotKitCanvas_(this.canvas_);
76171648 442
eb7bf005
EC
443 // The interactive parts of the graph are drawn on top of the chart.
444 this.graphDiv.appendChild(this.hidden_);
445 this.graphDiv.appendChild(this.canvas_);
446 this.mouseEventElement_ = this.canvas_;
447
4c47502d
DV
448 // Make sure we don't overdraw.
449 Dygraph.clipCanvas_(this.hidden_, this.clippingArea_);
450 Dygraph.clipCanvas_(this.canvas_, this.clippingArea_);
451
76171648 452 var dygraph = this;
eb7bf005 453 Dygraph.addEvent(this.mouseEventElement_, 'mousemove', function(e) {
76171648
DV
454 dygraph.mouseMove_(e);
455 });
eb7bf005 456 Dygraph.addEvent(this.mouseEventElement_, 'mouseout', function(e) {
76171648
DV
457 dygraph.mouseOut_(e);
458 });
697e70b2
DV
459
460 // Create the grapher
461 // TODO(danvk): why does the Layout need its own set of options?
462 this.layoutOptions_ = { 'xOriginIsZero': false };
463 Dygraph.update(this.layoutOptions_, this.attrs_);
464 Dygraph.update(this.layoutOptions_, this.user_attrs_);
465 Dygraph.update(this.layoutOptions_, {
466 'errorBars': (this.attr_("errorBars") || this.attr_("customBars")) });
467
468 this.layout_ = new DygraphLayout(this, this.layoutOptions_);
469
470 // TODO(danvk): why does the Renderer need its own set of options?
471 this.renderOptions_ = { colorScheme: this.colors_,
472 strokeColor: null,
473 axisLineWidth: Dygraph.AXIS_LINE_WIDTH };
474 Dygraph.update(this.renderOptions_, this.attrs_);
475 Dygraph.update(this.renderOptions_, this.user_attrs_);
476 this.plotter_ = new DygraphCanvasRenderer(this,
477 this.hidden_, this.layout_,
478 this.renderOptions_);
479
480 this.createStatusMessage_();
481 this.createRollInterface_();
482 this.createDragInterface_();
4cfcc38c
DV
483};
484
485/**
486 * Detach DOM elements in the dygraph and null out all data references.
487 * Calling this when you're done with a dygraph can dramatically reduce memory
488 * usage. See, e.g., the tests/perf.html example.
489 */
490Dygraph.prototype.destroy = function() {
491 var removeRecursive = function(node) {
492 while (node.hasChildNodes()) {
493 removeRecursive(node.firstChild);
494 node.removeChild(node.firstChild);
495 }
496 };
497 removeRecursive(this.maindiv_);
498
499 var nullOut = function(obj) {
500 for (var n in obj) {
501 if (typeof(obj[n]) === 'object') {
502 obj[n] = null;
503 }
504 }
505 };
506
507 // These may not all be necessary, but it can't hurt...
508 nullOut(this.layout_);
509 nullOut(this.plotter_);
510 nullOut(this);
511};
6a1aa64f
DV
512
513/**
514 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
285a6bda 515 * this particular canvas. All Dygraph work is done on this.canvas_.
8846615a 516 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
6a1aa64f
DV
517 * @return {Object} The newly-created canvas
518 * @private
519 */
285a6bda 520Dygraph.prototype.createPlotKitCanvas_ = function(canvas) {
f8cfec73 521 var h = Dygraph.createCanvas();
6a1aa64f 522 h.style.position = "absolute";
9ac5e4ae
DV
523 // TODO(danvk): h should be offset from canvas. canvas needs to include
524 // some extra area to make it easier to zoom in on the far left and far
525 // right. h needs to be precisely the plot area, so that clipping occurs.
6a1aa64f
DV
526 h.style.top = canvas.style.top;
527 h.style.left = canvas.style.left;
528 h.width = this.width_;
529 h.height = this.height_;
f8cfec73
DV
530 h.style.width = this.width_ + "px"; // for IE
531 h.style.height = this.height_ + "px"; // for IE
6a1aa64f
DV
532 return h;
533};
534
f474c2a3
DV
535// Taken from MochiKit.Color
536Dygraph.hsvToRGB = function (hue, saturation, value) {
537 var red;
538 var green;
539 var blue;
540 if (saturation === 0) {
541 red = value;
542 green = value;
543 blue = value;
544 } else {
545 var i = Math.floor(hue * 6);
546 var f = (hue * 6) - i;
547 var p = value * (1 - saturation);
548 var q = value * (1 - (saturation * f));
549 var t = value * (1 - (saturation * (1 - f)));
550 switch (i) {
551 case 1: red = q; green = value; blue = p; break;
552 case 2: red = p; green = value; blue = t; break;
553 case 3: red = p; green = q; blue = value; break;
554 case 4: red = t; green = p; blue = value; break;
555 case 5: red = value; green = p; blue = q; break;
556 case 6: // fall through
557 case 0: red = value; green = t; blue = p; break;
558 }
559 }
560 red = Math.floor(255 * red + 0.5);
561 green = Math.floor(255 * green + 0.5);
562 blue = Math.floor(255 * blue + 0.5);
563 return 'rgb(' + red + ',' + green + ',' + blue + ')';
564};
565
566
6a1aa64f
DV
567/**
568 * Generate a set of distinct colors for the data series. This is done with a
569 * color wheel. Saturation/Value are customizable, and the hue is
570 * equally-spaced around the color wheel. If a custom set of colors is
571 * specified, that is used instead.
6a1aa64f
DV
572 * @private
573 */
285a6bda
DV
574Dygraph.prototype.setColors_ = function() {
575 // TODO(danvk): compute this directly into this.attrs_['colorScheme'] and do
576 // away with this.renderOptions_.
577 var num = this.attr_("labels").length - 1;
6a1aa64f 578 this.colors_ = [];
285a6bda
DV
579 var colors = this.attr_('colors');
580 if (!colors) {
581 var sat = this.attr_('colorSaturation') || 1.0;
582 var val = this.attr_('colorValue') || 0.5;
2aa21213 583 var half = Math.ceil(num / 2);
6a1aa64f 584 for (var i = 1; i <= num; i++) {
ec1959eb 585 if (!this.visibility()[i-1]) continue;
43af96e7 586 // alternate colors for high contrast.
2aa21213 587 var idx = i % 2 ? Math.ceil(i / 2) : (half + i / 2);
43af96e7
NK
588 var hue = (1.0 * idx/ (1 + num));
589 this.colors_.push(Dygraph.hsvToRGB(hue, sat, val));
6a1aa64f
DV
590 }
591 } else {
592 for (var i = 0; i < num; i++) {
ec1959eb 593 if (!this.visibility()[i]) continue;
285a6bda 594 var colorStr = colors[i % colors.length];
f474c2a3 595 this.colors_.push(colorStr);
6a1aa64f
DV
596 }
597 }
285a6bda 598
c21d2c2d 599 // TODO(danvk): update this w/r/t/ the new options system.
285a6bda 600 this.renderOptions_.colorScheme = this.colors_;
fc80a396
DV
601 Dygraph.update(this.plotter_.options, this.renderOptions_);
602 Dygraph.update(this.layoutOptions_, this.user_attrs_);
603 Dygraph.update(this.layoutOptions_, this.attrs_);
6a1aa64f
DV
604}
605
43af96e7
NK
606/**
607 * Return the list of colors. This is either the list of colors passed in the
608 * attributes, or the autogenerated list of rgb(r,g,b) strings.
609 * @return {Array<string>} The list of colors.
610 */
611Dygraph.prototype.getColors = function() {
612 return this.colors_;
613};
614
5e60386d
DV
615// The following functions are from quirksmode.org with a modification for Safari from
616// http://blog.firetree.net/2005/07/04/javascript-find-position/
3df0ccf0
DV
617// http://www.quirksmode.org/js/findpos.html
618Dygraph.findPosX = function(obj) {
619 var curleft = 0;
5e60386d 620 if(obj.offsetParent)
50360fd0 621 while(1)
5e60386d 622 {
3df0ccf0 623 curleft += obj.offsetLeft;
5e60386d
DV
624 if(!obj.offsetParent)
625 break;
3df0ccf0
DV
626 obj = obj.offsetParent;
627 }
5e60386d 628 else if(obj.x)
3df0ccf0
DV
629 curleft += obj.x;
630 return curleft;
631};
c21d2c2d 632
3df0ccf0
DV
633Dygraph.findPosY = function(obj) {
634 var curtop = 0;
5e60386d
DV
635 if(obj.offsetParent)
636 while(1)
637 {
3df0ccf0 638 curtop += obj.offsetTop;
5e60386d
DV
639 if(!obj.offsetParent)
640 break;
3df0ccf0
DV
641 obj = obj.offsetParent;
642 }
5e60386d 643 else if(obj.y)
3df0ccf0
DV
644 curtop += obj.y;
645 return curtop;
646};
647
5e60386d 648
71a11a8e 649
6a1aa64f
DV
650/**
651 * Create the div that contains information on the selected point(s)
652 * This goes in the top right of the canvas, unless an external div has already
653 * been specified.
654 * @private
655 */
fedbd797 656Dygraph.prototype.createStatusMessage_ = function() {
657 var userLabelsDiv = this.user_attrs_["labelsDiv"];
658 if (userLabelsDiv && null != userLabelsDiv
659 && (typeof(userLabelsDiv) == "string" || userLabelsDiv instanceof String)) {
660 this.user_attrs_["labelsDiv"] = document.getElementById(userLabelsDiv);
661 }
285a6bda
DV
662 if (!this.attr_("labelsDiv")) {
663 var divWidth = this.attr_('labelsDivWidth');
b0c3b730 664 var messagestyle = {
6a1aa64f
DV
665 "position": "absolute",
666 "fontSize": "14px",
667 "zIndex": 10,
668 "width": divWidth + "px",
669 "top": "0px",
8846615a 670 "left": (this.width_ - divWidth - 2) + "px",
6a1aa64f
DV
671 "background": "white",
672 "textAlign": "left",
b0c3b730 673 "overflow": "hidden"};
fc80a396 674 Dygraph.update(messagestyle, this.attr_('labelsDivStyles'));
b0c3b730
DV
675 var div = document.createElement("div");
676 for (var name in messagestyle) {
85b99f0b
DV
677 if (messagestyle.hasOwnProperty(name)) {
678 div.style[name] = messagestyle[name];
679 }
b0c3b730
DV
680 }
681 this.graphDiv.appendChild(div);
285a6bda 682 this.attrs_.labelsDiv = div;
6a1aa64f
DV
683 }
684};
685
686/**
687 * Create the text box to adjust the averaging period
688 * @return {Object} The newly-created text box
689 * @private
690 */
285a6bda 691Dygraph.prototype.createRollInterface_ = function() {
285a6bda 692 var display = this.attr_('showRoller') ? "block" : "none";
b0c3b730
DV
693 var textAttr = { "position": "absolute",
694 "zIndex": 10,
695 "top": (this.plotter_.area.h - 25) + "px",
696 "left": (this.plotter_.area.x + 1) + "px",
697 "display": display
6a1aa64f 698 };
b0c3b730
DV
699 var roller = document.createElement("input");
700 roller.type = "text";
701 roller.size = "2";
702 roller.value = this.rollPeriod_;
703 for (var name in textAttr) {
85b99f0b
DV
704 if (textAttr.hasOwnProperty(name)) {
705 roller.style[name] = textAttr[name];
706 }
b0c3b730
DV
707 }
708
6a1aa64f 709 var pa = this.graphDiv;
b0c3b730 710 pa.appendChild(roller);
76171648
DV
711 var dygraph = this;
712 roller.onchange = function() { dygraph.adjustRoll(roller.value); };
6a1aa64f 713 return roller;
76171648
DV
714};
715
716// These functions are taken from MochiKit.Signal
717Dygraph.pageX = function(e) {
718 if (e.pageX) {
719 return (!e.pageX || e.pageX < 0) ? 0 : e.pageX;
720 } else {
721 var de = document;
722 var b = document.body;
723 return e.clientX +
724 (de.scrollLeft || b.scrollLeft) -
725 (de.clientLeft || 0);
726 }
727};
728
729Dygraph.pageY = function(e) {
730 if (e.pageY) {
731 return (!e.pageY || e.pageY < 0) ? 0 : e.pageY;
732 } else {
733 var de = document;
734 var b = document.body;
735 return e.clientY +
736 (de.scrollTop || b.scrollTop) -
737 (de.clientTop || 0);
738 }
739};
6a1aa64f
DV
740
741/**
742 * Set up all the mouse handlers needed to capture dragging behavior for zoom
27385109 743 * events.
6a1aa64f
DV
744 * @private
745 */
285a6bda 746Dygraph.prototype.createDragInterface_ = function() {
6a1aa64f
DV
747 var self = this;
748
749 // Tracks whether the mouse is down right now
bce01b0f 750 var isZooming = false;
c776c216 751 var isPanning = false;
6a1aa64f
DV
752 var dragStartX = null;
753 var dragStartY = null;
754 var dragEndX = null;
755 var dragEndY = null;
756 var prevEndX = null;
8b83c6cc
RK
757 var prevEndY = null;
758 var prevDragDirection = null;
bce01b0f
DV
759 var draggingDate = null;
760 var dateRange = null;
6a1aa64f
DV
761
762 // Utility function to convert page-wide coordinates to canvas coords
67e650dc
DV
763 var px = 0;
764 var py = 0;
76171648 765 var getX = function(e) { return Dygraph.pageX(e) - px };
1e1bf7df 766 var getY = function(e) { return Dygraph.pageY(e) - py };
6a1aa64f
DV
767
768 // Draw zoom rectangles when the mouse is down and the user moves around
eb7bf005 769 Dygraph.addEvent(this.mouseEventElement_, 'mousemove', function(event) {
bce01b0f 770 if (isZooming) {
6a1aa64f
DV
771 dragEndX = getX(event);
772 dragEndY = getY(event);
773
8b83c6cc
RK
774 var xDelta = Math.abs(dragStartX - dragEndX);
775 var yDelta = Math.abs(dragStartY - dragEndY);
776 var dragDirection = (xDelta < yDelta) ? "V" : "H";
777
778 self.drawZoomRect_(dragDirection, dragStartX, dragEndX, dragStartY, dragEndY,
779 prevDragDirection, prevEndX, prevEndY);
780
6a1aa64f 781 prevEndX = dragEndX;
8b83c6cc
RK
782 prevEndY = dragEndY;
783 prevDragDirection = dragDirection;
bce01b0f
DV
784 } else if (isPanning) {
785 dragEndX = getX(event);
786 dragEndY = getY(event);
787
788 // Want to have it so that:
789 // 1. draggingDate appears at dragEndX
790 // 2. daterange = (dateWindow_[1] - dateWindow_[0]) is unaltered.
791
792 self.dateWindow_[0] = draggingDate - (dragEndX / self.width_) * dateRange;
793 self.dateWindow_[1] = self.dateWindow_[0] + dateRange;
794 self.drawGraph_(self.rawData_);
6a1aa64f
DV
795 }
796 });
797
798 // Track the beginning of drag events
eb7bf005 799 Dygraph.addEvent(this.mouseEventElement_, 'mousedown', function(event) {
3df0ccf0
DV
800 px = Dygraph.findPosX(self.canvas_);
801 py = Dygraph.findPosY(self.canvas_);
6a1aa64f
DV
802 dragStartX = getX(event);
803 dragStartY = getY(event);
bce01b0f 804
2dab69c3 805 if (event.altKey || event.shiftKey) {
8b83c6cc 806 // TODO(konigsberg): Support vertical panning.
d12999d3 807 if (!self.dateWindow_) return; // have to be zoomed in to pan.
bce01b0f
DV
808 isPanning = true;
809 dateRange = self.dateWindow_[1] - self.dateWindow_[0];
d12999d3
DV
810 draggingDate = (dragStartX / self.width_) * dateRange +
811 self.dateWindow_[0];
bce01b0f
DV
812 } else {
813 isZooming = true;
814 }
6a1aa64f
DV
815 });
816
817 // If the user releases the mouse button during a drag, but not over the
818 // canvas, then it doesn't count as a zooming action.
76171648 819 Dygraph.addEvent(document, 'mouseup', function(event) {
bce01b0f
DV
820 if (isZooming || isPanning) {
821 isZooming = false;
6a1aa64f
DV
822 dragStartX = null;
823 dragStartY = null;
824 }
bce01b0f
DV
825
826 if (isPanning) {
827 isPanning = false;
828 draggingDate = null;
829 dateRange = null;
830 }
6a1aa64f
DV
831 });
832
833 // Temporarily cancel the dragging event when the mouse leaves the graph
eb7bf005 834 Dygraph.addEvent(this.mouseEventElement_, 'mouseout', function(event) {
bce01b0f 835 if (isZooming) {
6a1aa64f
DV
836 dragEndX = null;
837 dragEndY = null;
838 }
839 });
840
841 // If the mouse is released on the canvas during a drag event, then it's a
842 // zoom. Only do the zoom if it's over a large enough area (>= 10 pixels)
eb7bf005 843 Dygraph.addEvent(this.mouseEventElement_, 'mouseup', function(event) {
bce01b0f
DV
844 if (isZooming) {
845 isZooming = false;
6a1aa64f
DV
846 dragEndX = getX(event);
847 dragEndY = getY(event);
848 var regionWidth = Math.abs(dragEndX - dragStartX);
849 var regionHeight = Math.abs(dragEndY - dragStartY);
850
e2b5f2bc
DV
851 if (regionWidth < 2 && regionHeight < 2 &&
852 self.lastx_ != undefined && self.lastx_ != -1) {
2ad87eaa 853 // TODO(danvk): pass along more info about the points, e.g. 'x'
1e1bf7df 854 if (self.attr_('clickCallback') != null) {
1e1bf7df
DV
855 self.attr_('clickCallback')(event, self.lastx_, self.selPoints_);
856 }
857 if (self.attr_('pointClickCallback')) {
858 // check if the click was on a particular point.
859 var closestIdx = -1;
860 var closestDistance = 0;
861 for (var i = 0; i < self.selPoints_.length; i++) {
862 var p = self.selPoints_[i];
863 var distance = Math.pow(p.canvasx - dragEndX, 2) +
864 Math.pow(p.canvasy - dragEndY, 2);
865 if (closestIdx == -1 || distance < closestDistance) {
866 closestDistance = distance;
867 closestIdx = i;
868 }
869 }
870
871 // Allow any click within two pixels of the dot.
2ad87eaa 872 var radius = self.attr_('highlightCircleSize') + 2;
1e1bf7df
DV
873 if (closestDistance <= 5 * 5) {
874 self.attr_('pointClickCallback')(event, self.selPoints_[closestIdx]);
875 }
876 }
6a1aa64f
DV
877 }
878
8b83c6cc
RK
879 if (regionWidth >= 10 && regionWidth > regionHeight) {
880 self.doZoomX_(Math.min(dragStartX, dragEndX),
6a1aa64f 881 Math.max(dragStartX, dragEndX));
8b83c6cc
RK
882 } else if (regionHeight >= 10 && regionHeight > regionWidth){
883 self.doZoomY_(Math.min(dragStartY, dragEndY),
884 Math.max(dragStartY, dragEndY));
6a1aa64f
DV
885 } else {
886 self.canvas_.getContext("2d").clearRect(0, 0,
887 self.canvas_.width,
888 self.canvas_.height);
889 }
890
891 dragStartX = null;
892 dragStartY = null;
893 }
bce01b0f
DV
894
895 if (isPanning) {
896 isPanning = false;
897 draggingDate = null;
898 dateRange = null;
899 }
6a1aa64f
DV
900 });
901
902 // Double-clicking zooms back out
eb7bf005 903 Dygraph.addEvent(this.mouseEventElement_, 'dblclick', function(event) {
8b83c6cc
RK
904 // Disable zooming out if panning.
905 if (event.altKey || event.shiftKey) return;
906
907 self.doUnzoom_();
6a1aa64f
DV
908 });
909};
910
911/**
912 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
913 * up any previous zoom rectangles that were drawn. This could be optimized to
914 * avoid extra redrawing, but it's tricky to avoid interactions with the status
915 * dots.
8b83c6cc
RK
916 *
917 * @param {String} direction the direction of the zoom rectangle. "H" and "V"
918 * for Horizontal and Vertical.
6a1aa64f
DV
919 * @param {Number} startX The X position where the drag started, in canvas
920 * coordinates.
921 * @param {Number} endX The current X position of the drag, in canvas coords.
8b83c6cc
RK
922 * @param {Number} startY The Y position where the drag started, in canvas
923 * coordinates.
924 * @param {Number} endY The current Y position of the drag, in canvas coords.
925 * @param {String} prevDirection the value of direction on the previous call to
926 * this function. Used to avoid excess redrawing
6a1aa64f
DV
927 * @param {Number} prevEndX The value of endX on the previous call to this
928 * function. Used to avoid excess redrawing
8b83c6cc
RK
929 * @param {Number} prevEndY The value of endY on the previous call to this
930 * function. Used to avoid excess redrawing
6a1aa64f
DV
931 * @private
932 */
8b83c6cc
RK
933Dygraph.prototype.drawZoomRect_ = function(direction, startX, endX, startY, endY,
934 prevDirection, prevEndX, prevEndY) {
6a1aa64f
DV
935 var ctx = this.canvas_.getContext("2d");
936
937 // Clean up from the previous rect if necessary
8b83c6cc 938 if (prevDirection == "H") {
6a1aa64f
DV
939 ctx.clearRect(Math.min(startX, prevEndX), 0,
940 Math.abs(startX - prevEndX), this.height_);
8b83c6cc
RK
941 } else if (prevDirection == "V"){
942 ctx.clearRect(0, Math.min(startY, prevEndY),
943 this.width_, Math.abs(startY - prevEndY));
6a1aa64f
DV
944 }
945
946 // Draw a light-grey rectangle to show the new viewing area
8b83c6cc
RK
947 if (direction == "H") {
948 if (endX && startX) {
949 ctx.fillStyle = "rgba(128,128,128,0.33)";
950 ctx.fillRect(Math.min(startX, endX), 0,
951 Math.abs(endX - startX), this.height_);
952 }
953 }
954 if (direction == "V") {
955 if (endY && startY) {
956 ctx.fillStyle = "rgba(128,128,128,0.33)";
957 ctx.fillRect(0, Math.min(startY, endY),
958 this.width_, Math.abs(endY - startY));
959 }
6a1aa64f
DV
960 }
961};
962
963/**
8b83c6cc
RK
964 * Zoom to something containing [lowX, highX]. These are pixel coordinates in
965 * the canvas. The exact zoom window may be slightly larger if there are no data
966 * points near lowX or highX. Don't confuse this function with doZoomXDates,
967 * which accepts dates that match the raw data. This function redraws the graph.
968 *
6a1aa64f
DV
969 * @param {Number} lowX The leftmost pixel value that should be visible.
970 * @param {Number} highX The rightmost pixel value that should be visible.
971 * @private
972 */
8b83c6cc 973Dygraph.prototype.doZoomX_ = function(lowX, highX) {
6a1aa64f 974 // Find the earliest and latest dates contained in this canvasx range.
8b83c6cc 975 // Convert the call to date ranges of the raw data.
56623f3b
DV
976 var r = this.toDataCoords(lowX, null);
977 var minDate = r[0];
978 r = this.toDataCoords(highX, null);
979 var maxDate = r[0];
8b83c6cc
RK
980 this.doZoomXDates_(minDate, maxDate);
981};
6a1aa64f 982
8b83c6cc
RK
983/**
984 * Zoom to something containing [minDate, maxDate] values. Don't confuse this
985 * method with doZoomX which accepts pixel coordinates. This function redraws
986 * the graph.
987 *
988 * @param {Number} minDate The minimum date that should be visible.
989 * @param {Number} maxDate The maximum date that should be visible.
990 * @private
991 */
992Dygraph.prototype.doZoomXDates_ = function(minDate, maxDate) {
6a1aa64f
DV
993 this.dateWindow_ = [minDate, maxDate];
994 this.drawGraph_(this.rawData_);
285a6bda 995 if (this.attr_("zoomCallback")) {
8b83c6cc
RK
996 var yRange = this.yAxisRange();
997 this.attr_("zoomCallback")(minDate, maxDate, yRange[0], yRange[1]);
998 }
999};
1000
1001/**
1002 * Zoom to something containing [lowY, highY]. These are pixel coordinates in
1003 * the canvas. The exact zoom window may be slightly larger if there are no
1004 * data points near lowY or highY. Don't confuse this function with
1005 * doZoomYValues, which accepts parameters that match the raw data. This
1006 * function redraws the graph.
1007 *
1008 * @param {Number} lowY The topmost pixel value that should be visible.
1009 * @param {Number} highY The lowest pixel value that should be visible.
1010 * @private
1011 */
1012Dygraph.prototype.doZoomY_ = function(lowY, highY) {
1013 // Find the highest and lowest values in pixel range.
1014 var r = this.toDataCoords(null, lowY);
1015 var minValue = r[1];
1016 r = this.toDataCoords(null, highY);
1017 var maxValue = r[1];
1018
1019 this.doZoomYValues_(minValue, maxValue);
1020};
1021
1022/**
1023 * Zoom to something containing [minValue, maxValue] values. Don't confuse this
1024 * method with doZoomY which accepts pixel coordinates. This function redraws
1025 * the graph.
1026 *
1027 * @param {Number} minValue The minimum Value that should be visible.
1028 * @param {Number} maxValue The maximum value that should be visible.
1029 * @private
1030 */
1031Dygraph.prototype.doZoomYValues_ = function(minValue, maxValue) {
1032 this.valueWindow_ = [maxValue, minValue];
1033 this.drawGraph_(this.rawData_);
1034 if (this.attr_("zoomCallback")) {
1035 var xRange = this.xAxisRange();
1036 this.attr_("zoomCallback")(xRange[0], xRange[1], minValue, maxValue);
1037 }
1038};
1039
1040/**
1041 * Reset the zoom to the original view coordinates. This is the same as
1042 * double-clicking on the graph.
1043 *
1044 * @private
1045 */
1046Dygraph.prototype.doUnzoom_ = function() {
1047 var dirty = null;
1048 if (this.dateWindow_ != null) {
1049 dirty = 1;
1050 this.dateWindow_ = null;
1051 }
1052 if (this.valueWindow_ != null) {
1053 dirty = 1;
1054 this.valueWindow_ = this.valueRange_;
1055 }
1056
1057 if (dirty) {
1058 if (this.attr_("zoomCallback")) {
1059 var minDate = this.rawData_[0][0];
1060 var maxDate = this.rawData_[this.rawData_.length - 1][0];
a2db51b5
RK
1061 var minValue = this.yAxisRange()[0];
1062 var maxValue = this.yAxisRange()[1];
8b83c6cc
RK
1063 this.attr_("zoomCallback")(minDate, maxDate, minValue, maxValue);
1064 }
1065 this.drawGraph_(this.rawData_);
67e650dc 1066 }
6a1aa64f
DV
1067};
1068
1069/**
1070 * When the mouse moves in the canvas, display information about a nearby data
1071 * point and draw dots over those points in the data series. This function
1072 * takes care of cleanup of previously-drawn dots.
1073 * @param {Object} event The mousemove event from the browser.
1074 * @private
1075 */
285a6bda 1076Dygraph.prototype.mouseMove_ = function(event) {
eb7bf005 1077 var canvasx = Dygraph.pageX(event) - Dygraph.findPosX(this.mouseEventElement_);
6a1aa64f
DV
1078 var points = this.layout_.points;
1079
1080 var lastx = -1;
1081 var lasty = -1;
1082
1083 // Loop through all the points and find the date nearest to our current
1084 // location.
1085 var minDist = 1e+100;
1086 var idx = -1;
1087 for (var i = 0; i < points.length; i++) {
1088 var dist = Math.abs(points[i].canvasx - canvasx);
f032c51d 1089 if (dist > minDist) continue;
6a1aa64f
DV
1090 minDist = dist;
1091 idx = i;
1092 }
1093 if (idx >= 0) lastx = points[idx].xval;
1094 // Check that you can really highlight the last day's data
1095 if (canvasx > points[points.length-1].canvasx)
1096 lastx = points[points.length-1].xval;
1097
1098 // Extract the points we've selected
b258a3da 1099 this.selPoints_ = [];
50360fd0 1100 var l = points.length;
416b05ad
NK
1101 if (!this.attr_("stackedGraph")) {
1102 for (var i = 0; i < l; i++) {
1103 if (points[i].xval == lastx) {
1104 this.selPoints_.push(points[i]);
1105 }
1106 }
1107 } else {
354e15ab
DE
1108 // Need to 'unstack' points starting from the bottom
1109 var cumulative_sum = 0;
416b05ad
NK
1110 for (var i = l - 1; i >= 0; i--) {
1111 if (points[i].xval == lastx) {
354e15ab 1112 var p = {}; // Clone the point since we modify it
d4139cd8
NK
1113 for (var k in points[i]) {
1114 p[k] = points[i][k];
50360fd0
NK
1115 }
1116 p.yval -= cumulative_sum;
1117 cumulative_sum += p.yval;
d4139cd8 1118 this.selPoints_.push(p);
12e4c741 1119 }
6a1aa64f 1120 }
354e15ab 1121 this.selPoints_.reverse();
6a1aa64f
DV
1122 }
1123
b258a3da 1124 if (this.attr_("highlightCallback")) {
a4c6a67c 1125 var px = this.lastx_;
dd082dda 1126 if (px !== null && lastx != px) {
344ba8c0 1127 // only fire if the selected point has changed.
50360fd0 1128 this.attr_("highlightCallback")(event, lastx, this.selPoints_);
43af96e7 1129 }
12e4c741 1130 }
43af96e7 1131
239c712d
NAG
1132 // Save last x position for callbacks.
1133 this.lastx_ = lastx;
50360fd0 1134
239c712d
NAG
1135 this.updateSelection_();
1136};
b258a3da 1137
239c712d
NAG
1138/**
1139 * Draw dots over the selectied points in the data series. This function
1140 * takes care of cleanup of previously-drawn dots.
1141 * @private
1142 */
1143Dygraph.prototype.updateSelection_ = function() {
6a1aa64f 1144 // Clear the previously drawn vertical, if there is one
285a6bda 1145 var circleSize = this.attr_('highlightCircleSize');
6a1aa64f
DV
1146 var ctx = this.canvas_.getContext("2d");
1147 if (this.previousVerticalX_ >= 0) {
1148 var px = this.previousVerticalX_;
1149 ctx.clearRect(px - circleSize - 1, 0, 2 * circleSize + 2, this.height_);
1150 }
1151
584ceeaa
DV
1152 var isOK = function(x) { return x && !isNaN(x); };
1153
d160cc3b 1154 if (this.selPoints_.length > 0) {
b258a3da 1155 var canvasx = this.selPoints_[0].canvasx;
6a1aa64f
DV
1156
1157 // Set the status message to indicate the selected point(s)
239c712d 1158 var replace = this.attr_('xValueFormatter')(this.lastx_, this) + ":";
50360fd0 1159 var fmtFunc = this.attr_('yValueFormatter');
6a1aa64f 1160 var clen = this.colors_.length;
d160cc3b
NK
1161
1162 if (this.attr_('showLabelsOnHighlight')) {
1163 // Set the status message to indicate the selected point(s)
d160cc3b 1164 for (var i = 0; i < this.selPoints_.length; i++) {
bcd3ebf0 1165 if (!this.attr_("labelsShowZeroValues") && this.selPoints_[i].yval == 0) continue;
d160cc3b
NK
1166 if (!isOK(this.selPoints_[i].canvasy)) continue;
1167 if (this.attr_("labelsSeparateLines")) {
1168 replace += "<br/>";
1169 }
1170 var point = this.selPoints_[i];
1171 var c = new RGBColor(this.colors_[i%clen]);
029da4b6 1172 var yval = fmtFunc(point.yval);
d160cc3b
NK
1173 replace += " <b><font color='" + c.toHex() + "'>"
1174 + point.name + "</font></b>:"
1175 + yval;
6a1aa64f 1176 }
50360fd0 1177
d160cc3b 1178 this.attr_("labelsDiv").innerHTML = replace;
6a1aa64f 1179 }
6a1aa64f 1180
6a1aa64f 1181 // Draw colored circles over the center of each selected point
43af96e7 1182 ctx.save();
b258a3da 1183 for (var i = 0; i < this.selPoints_.length; i++) {
f032c51d 1184 if (!isOK(this.selPoints_[i].canvasy)) continue;
6a1aa64f 1185 ctx.beginPath();
563c70ca 1186 ctx.fillStyle = this.plotter_.colors[this.selPoints_[i].name];
f032c51d 1187 ctx.arc(canvasx, this.selPoints_[i].canvasy, circleSize,
7bf6a9fe 1188 0, 2 * Math.PI, false);
6a1aa64f
DV
1189 ctx.fill();
1190 }
1191 ctx.restore();
1192
1193 this.previousVerticalX_ = canvasx;
1194 }
1195};
1196
1197/**
239c712d
NAG
1198 * Set manually set selected dots, and display information about them
1199 * @param int row number that should by highlighted
1200 * false value clears the selection
1201 * @public
1202 */
1203Dygraph.prototype.setSelection = function(row) {
1204 // Extract the points we've selected
1205 this.selPoints_ = [];
1206 var pos = 0;
50360fd0 1207
239c712d 1208 if (row !== false) {
16269f6e
NAG
1209 row = row-this.boundaryIds_[0][0];
1210 }
50360fd0 1211
16269f6e 1212 if (row !== false && row >= 0) {
239c712d 1213 for (var i in this.layout_.datasets) {
16269f6e
NAG
1214 if (row < this.layout_.datasets[i].length) {
1215 this.selPoints_.push(this.layout_.points[pos+row]);
1216 }
239c712d
NAG
1217 pos += this.layout_.datasets[i].length;
1218 }
16269f6e 1219 }
50360fd0 1220
16269f6e 1221 if (this.selPoints_.length) {
239c712d
NAG
1222 this.lastx_ = this.selPoints_[0].xval;
1223 this.updateSelection_();
1224 } else {
1225 this.lastx_ = -1;
1226 this.clearSelection();
1227 }
1228
1229};
1230
1231/**
6a1aa64f
DV
1232 * The mouse has left the canvas. Clear out whatever artifacts remain
1233 * @param {Object} event the mouseout event from the browser.
1234 * @private
1235 */
285a6bda 1236Dygraph.prototype.mouseOut_ = function(event) {
a4c6a67c
AV
1237 if (this.attr_("unhighlightCallback")) {
1238 this.attr_("unhighlightCallback")(event);
1239 }
1240
43af96e7 1241 if (this.attr_("hideOverlayOnMouseOut")) {
239c712d 1242 this.clearSelection();
43af96e7 1243 }
6a1aa64f
DV
1244};
1245
239c712d
NAG
1246/**
1247 * Remove all selection from the canvas
1248 * @public
1249 */
1250Dygraph.prototype.clearSelection = function() {
1251 // Get rid of the overlay data
1252 var ctx = this.canvas_.getContext("2d");
1253 ctx.clearRect(0, 0, this.width_, this.height_);
1254 this.attr_("labelsDiv").innerHTML = "";
1255 this.selPoints_ = [];
1256 this.lastx_ = -1;
1257}
1258
103b7292
NAG
1259/**
1260 * Returns the number of the currently selected row
1261 * @return int row number, of -1 if nothing is selected
1262 * @public
1263 */
1264Dygraph.prototype.getSelection = function() {
1265 if (!this.selPoints_ || this.selPoints_.length < 1) {
1266 return -1;
1267 }
50360fd0 1268
103b7292
NAG
1269 for (var row=0; row<this.layout_.points.length; row++ ) {
1270 if (this.layout_.points[row].x == this.selPoints_[0].x) {
16269f6e 1271 return row + this.boundaryIds_[0][0];
103b7292
NAG
1272 }
1273 }
1274 return -1;
1275}
1276
285a6bda 1277Dygraph.zeropad = function(x) {
32988383
DV
1278 if (x < 10) return "0" + x; else return "" + x;
1279}
1280
6a1aa64f 1281/**
6b8e33dd
DV
1282 * Return a string version of the hours, minutes and seconds portion of a date.
1283 * @param {Number} date The JavaScript date (ms since epoch)
1284 * @return {String} A time of the form "HH:MM:SS"
1285 * @private
1286 */
bf640e56 1287Dygraph.hmsString_ = function(date) {
285a6bda 1288 var zeropad = Dygraph.zeropad;
6b8e33dd
DV
1289 var d = new Date(date);
1290 if (d.getSeconds()) {
1291 return zeropad(d.getHours()) + ":" +
1292 zeropad(d.getMinutes()) + ":" +
1293 zeropad(d.getSeconds());
6b8e33dd 1294 } else {
054531ca 1295 return zeropad(d.getHours()) + ":" + zeropad(d.getMinutes());
6b8e33dd
DV
1296 }
1297}
1298
1299/**
bf640e56
AV
1300 * Convert a JS date to a string appropriate to display on an axis that
1301 * is displaying values at the stated granularity.
1302 * @param {Date} date The date to format
1303 * @param {Number} granularity One of the Dygraph granularity constants
1304 * @return {String} The formatted date
1305 * @private
1306 */
1307Dygraph.dateAxisFormatter = function(date, granularity) {
1308 if (granularity >= Dygraph.MONTHLY) {
1309 return date.strftime('%b %y');
1310 } else {
31eddad3 1311 var frac = date.getHours() * 3600 + date.getMinutes() * 60 + date.getSeconds() + date.getMilliseconds();
bf640e56
AV
1312 if (frac == 0 || granularity >= Dygraph.DAILY) {
1313 return new Date(date.getTime() + 3600*1000).strftime('%d%b');
1314 } else {
1315 return Dygraph.hmsString_(date.getTime());
1316 }
1317 }
1318}
1319
1320/**
6a1aa64f
DV
1321 * Convert a JS date (millis since epoch) to YYYY/MM/DD
1322 * @param {Number} date The JavaScript date (ms since epoch)
1323 * @return {String} A date of the form "YYYY/MM/DD"
1324 * @private
1325 */
285a6bda
DV
1326Dygraph.dateString_ = function(date, self) {
1327 var zeropad = Dygraph.zeropad;
6a1aa64f
DV
1328 var d = new Date(date);
1329
1330 // Get the year:
1331 var year = "" + d.getFullYear();
1332 // Get a 0 padded month string
6b8e33dd 1333 var month = zeropad(d.getMonth() + 1); //months are 0-offset, sigh
6a1aa64f 1334 // Get a 0 padded day string
6b8e33dd 1335 var day = zeropad(d.getDate());
6a1aa64f 1336
6b8e33dd
DV
1337 var ret = "";
1338 var frac = d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
bf640e56 1339 if (frac) ret = " " + Dygraph.hmsString_(date);
6b8e33dd
DV
1340
1341 return year + "/" + month + "/" + day + ret;
6a1aa64f
DV
1342};
1343
1344/**
1345 * Round a number to the specified number of digits past the decimal point.
1346 * @param {Number} num The number to round
1347 * @param {Number} places The number of decimals to which to round
1348 * @return {Number} The rounded number
1349 * @private
1350 */
029da4b6 1351Dygraph.round_ = function(num, places) {
6a1aa64f
DV
1352 var shift = Math.pow(10, places);
1353 return Math.round(num * shift)/shift;
1354};
1355
1356/**
1357 * Fires when there's data available to be graphed.
1358 * @param {String} data Raw CSV data to be plotted
1359 * @private
1360 */
285a6bda 1361Dygraph.prototype.loadedEvent_ = function(data) {
6a1aa64f
DV
1362 this.rawData_ = this.parseCSV_(data);
1363 this.drawGraph_(this.rawData_);
1364};
1365
285a6bda 1366Dygraph.prototype.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
8846615a 1367 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
285a6bda 1368Dygraph.prototype.quarters = ["Jan", "Apr", "Jul", "Oct"];
6a1aa64f
DV
1369
1370/**
1371 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
1372 * @private
1373 */
285a6bda 1374Dygraph.prototype.addXTicks_ = function() {
6a1aa64f
DV
1375 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
1376 var startDate, endDate;
1377 if (this.dateWindow_) {
1378 startDate = this.dateWindow_[0];
1379 endDate = this.dateWindow_[1];
1380 } else {
1381 startDate = this.rawData_[0][0];
1382 endDate = this.rawData_[this.rawData_.length - 1][0];
1383 }
1384
285a6bda 1385 var xTicks = this.attr_('xTicker')(startDate, endDate, this);
6a1aa64f 1386 this.layout_.updateOptions({xTicks: xTicks});
32988383
DV
1387};
1388
1389// Time granularity enumeration
285a6bda 1390Dygraph.SECONDLY = 0;
20a41c17
DV
1391Dygraph.TWO_SECONDLY = 1;
1392Dygraph.FIVE_SECONDLY = 2;
1393Dygraph.TEN_SECONDLY = 3;
1394Dygraph.THIRTY_SECONDLY = 4;
1395Dygraph.MINUTELY = 5;
1396Dygraph.TWO_MINUTELY = 6;
1397Dygraph.FIVE_MINUTELY = 7;
1398Dygraph.TEN_MINUTELY = 8;
1399Dygraph.THIRTY_MINUTELY = 9;
1400Dygraph.HOURLY = 10;
1401Dygraph.TWO_HOURLY = 11;
1402Dygraph.SIX_HOURLY = 12;
1403Dygraph.DAILY = 13;
1404Dygraph.WEEKLY = 14;
1405Dygraph.MONTHLY = 15;
1406Dygraph.QUARTERLY = 16;
1407Dygraph.BIANNUAL = 17;
1408Dygraph.ANNUAL = 18;
1409Dygraph.DECADAL = 19;
1410Dygraph.NUM_GRANULARITIES = 20;
285a6bda
DV
1411
1412Dygraph.SHORT_SPACINGS = [];
1413Dygraph.SHORT_SPACINGS[Dygraph.SECONDLY] = 1000 * 1;
20a41c17
DV
1414Dygraph.SHORT_SPACINGS[Dygraph.TWO_SECONDLY] = 1000 * 2;
1415Dygraph.SHORT_SPACINGS[Dygraph.FIVE_SECONDLY] = 1000 * 5;
285a6bda
DV
1416Dygraph.SHORT_SPACINGS[Dygraph.TEN_SECONDLY] = 1000 * 10;
1417Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_SECONDLY] = 1000 * 30;
1418Dygraph.SHORT_SPACINGS[Dygraph.MINUTELY] = 1000 * 60;
20a41c17
DV
1419Dygraph.SHORT_SPACINGS[Dygraph.TWO_MINUTELY] = 1000 * 60 * 2;
1420Dygraph.SHORT_SPACINGS[Dygraph.FIVE_MINUTELY] = 1000 * 60 * 5;
285a6bda
DV
1421Dygraph.SHORT_SPACINGS[Dygraph.TEN_MINUTELY] = 1000 * 60 * 10;
1422Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_MINUTELY] = 1000 * 60 * 30;
1423Dygraph.SHORT_SPACINGS[Dygraph.HOURLY] = 1000 * 3600;
20a41c17 1424Dygraph.SHORT_SPACINGS[Dygraph.TWO_HOURLY] = 1000 * 3600 * 2;
805d5519 1425Dygraph.SHORT_SPACINGS[Dygraph.SIX_HOURLY] = 1000 * 3600 * 6;
285a6bda
DV
1426Dygraph.SHORT_SPACINGS[Dygraph.DAILY] = 1000 * 86400;
1427Dygraph.SHORT_SPACINGS[Dygraph.WEEKLY] = 1000 * 604800;
32988383
DV
1428
1429// NumXTicks()
1430//
1431// If we used this time granularity, how many ticks would there be?
1432// This is only an approximation, but it's generally good enough.
1433//
285a6bda
DV
1434Dygraph.prototype.NumXTicks = function(start_time, end_time, granularity) {
1435 if (granularity < Dygraph.MONTHLY) {
32988383 1436 // Generate one tick mark for every fixed interval of time.
285a6bda 1437 var spacing = Dygraph.SHORT_SPACINGS[granularity];
32988383
DV
1438 return Math.floor(0.5 + 1.0 * (end_time - start_time) / spacing);
1439 } else {
1440 var year_mod = 1; // e.g. to only print one point every 10 years.
1441 var num_months = 12;
285a6bda
DV
1442 if (granularity == Dygraph.QUARTERLY) num_months = 3;
1443 if (granularity == Dygraph.BIANNUAL) num_months = 2;
1444 if (granularity == Dygraph.ANNUAL) num_months = 1;
1445 if (granularity == Dygraph.DECADAL) { num_months = 1; year_mod = 10; }
32988383
DV
1446
1447 var msInYear = 365.2524 * 24 * 3600 * 1000;
1448 var num_years = 1.0 * (end_time - start_time) / msInYear;
1449 return Math.floor(0.5 + 1.0 * num_years * num_months / year_mod);
1450 }
1451};
1452
1453// GetXAxis()
1454//
1455// Construct an x-axis of nicely-formatted times on meaningful boundaries
1456// (e.g. 'Jan 09' rather than 'Jan 22, 2009').
1457//
1458// Returns an array containing {v: millis, label: label} dictionaries.
1459//
285a6bda 1460Dygraph.prototype.GetXAxis = function(start_time, end_time, granularity) {
bf640e56 1461 var formatter = this.attr_("xAxisLabelFormatter");
32988383 1462 var ticks = [];
285a6bda 1463 if (granularity < Dygraph.MONTHLY) {
32988383 1464 // Generate one tick mark for every fixed interval of time.
285a6bda 1465 var spacing = Dygraph.SHORT_SPACINGS[granularity];
3d29302c 1466 var format = '%d%b'; // e.g. "1Jan"
076c9622
DV
1467
1468 // Find a time less than start_time which occurs on a "nice" time boundary
1469 // for this granularity.
1470 var g = spacing / 1000;
076c9622
DV
1471 var d = new Date(start_time);
1472 if (g <= 60) { // seconds
1473 var x = d.getSeconds(); d.setSeconds(x - x % g);
1474 } else {
1475 d.setSeconds(0);
1476 g /= 60;
1477 if (g <= 60) { // minutes
1478 var x = d.getMinutes(); d.setMinutes(x - x % g);
1479 } else {
1480 d.setMinutes(0);
1481 g /= 60;
1482
1483 if (g <= 24) { // days
1484 var x = d.getHours(); d.setHours(x - x % g);
1485 } else {
1486 d.setHours(0);
1487 g /= 24;
1488
1489 if (g == 7) { // one week
20a41c17 1490 d.setDate(d.getDate() - d.getDay());
076c9622
DV
1491 }
1492 }
1493 }
328bb812 1494 }
076c9622
DV
1495 start_time = d.getTime();
1496
32988383 1497 for (var t = start_time; t <= end_time; t += spacing) {
bf640e56 1498 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
1499 }
1500 } else {
1501 // Display a tick mark on the first of a set of months of each year.
1502 // Years get a tick mark iff y % year_mod == 0. This is useful for
1503 // displaying a tick mark once every 10 years, say, on long time scales.
1504 var months;
1505 var year_mod = 1; // e.g. to only print one point every 10 years.
1506
285a6bda 1507 if (granularity == Dygraph.MONTHLY) {
32988383 1508 months = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
285a6bda 1509 } else if (granularity == Dygraph.QUARTERLY) {
32988383 1510 months = [ 0, 3, 6, 9 ];
285a6bda 1511 } else if (granularity == Dygraph.BIANNUAL) {
32988383 1512 months = [ 0, 6 ];
285a6bda 1513 } else if (granularity == Dygraph.ANNUAL) {
32988383 1514 months = [ 0 ];
285a6bda 1515 } else if (granularity == Dygraph.DECADAL) {
32988383
DV
1516 months = [ 0 ];
1517 year_mod = 10;
1518 }
1519
1520 var start_year = new Date(start_time).getFullYear();
1521 var end_year = new Date(end_time).getFullYear();
285a6bda 1522 var zeropad = Dygraph.zeropad;
32988383
DV
1523 for (var i = start_year; i <= end_year; i++) {
1524 if (i % year_mod != 0) continue;
1525 for (var j = 0; j < months.length; j++) {
1526 var date_str = i + "/" + zeropad(1 + months[j]) + "/01";
1527 var t = Date.parse(date_str);
1528 if (t < start_time || t > end_time) continue;
bf640e56 1529 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
1530 }
1531 }
1532 }
1533
1534 return ticks;
1535};
1536
6a1aa64f
DV
1537
1538/**
1539 * Add ticks to the x-axis based on a date range.
1540 * @param {Number} startDate Start of the date window (millis since epoch)
1541 * @param {Number} endDate End of the date window (millis since epoch)
1542 * @return {Array.<Object>} Array of {label, value} tuples.
1543 * @public
1544 */
285a6bda 1545Dygraph.dateTicker = function(startDate, endDate, self) {
32988383 1546 var chosen = -1;
285a6bda
DV
1547 for (var i = 0; i < Dygraph.NUM_GRANULARITIES; i++) {
1548 var num_ticks = self.NumXTicks(startDate, endDate, i);
1549 if (self.width_ / num_ticks >= self.attr_('pixelsPerXLabel')) {
32988383
DV
1550 chosen = i;
1551 break;
2769de62 1552 }
6a1aa64f
DV
1553 }
1554
32988383 1555 if (chosen >= 0) {
285a6bda 1556 return self.GetXAxis(startDate, endDate, chosen);
6a1aa64f 1557 } else {
32988383 1558 // TODO(danvk): signal error.
6a1aa64f 1559 }
6a1aa64f
DV
1560};
1561
1562/**
1563 * Add ticks when the x axis has numbers on it (instead of dates)
1564 * @param {Number} startDate Start of the date window (millis since epoch)
1565 * @param {Number} endDate End of the date window (millis since epoch)
1566 * @return {Array.<Object>} Array of {label, value} tuples.
1567 * @public
1568 */
285a6bda 1569Dygraph.numericTicks = function(minV, maxV, self) {
c6336f04
DV
1570 // Basic idea:
1571 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
1572 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks).
285a6bda 1573 // The first spacing greater than pixelsPerYLabel is what we use.
ff00d3e2 1574 // TODO(danvk): version that works on a log scale.
f09e46d4
DV
1575 if (self.attr_("labelsKMG2")) {
1576 var mults = [1, 2, 4, 8];
1577 } else {
1578 var mults = [1, 2, 5];
1579 }
c6336f04 1580 var scale, low_val, high_val, nTicks;
285a6bda
DV
1581 // TODO(danvk): make it possible to set this for x- and y-axes independently.
1582 var pixelsPerTick = self.attr_('pixelsPerYLabel');
c6336f04 1583 for (var i = -10; i < 50; i++) {
f09e46d4
DV
1584 if (self.attr_("labelsKMG2")) {
1585 var base_scale = Math.pow(16, i);
1586 } else {
1587 var base_scale = Math.pow(10, i);
1588 }
c6336f04
DV
1589 for (var j = 0; j < mults.length; j++) {
1590 scale = base_scale * mults[j];
c6336f04
DV
1591 low_val = Math.floor(minV / scale) * scale;
1592 high_val = Math.ceil(maxV / scale) * scale;
48a0ac91 1593 nTicks = Math.abs(high_val - low_val) / scale;
285a6bda 1594 var spacing = self.height_ / nTicks;
c6336f04 1595 // wish I could break out of both loops at once...
285a6bda 1596 if (spacing > pixelsPerTick) break;
c6336f04 1597 }
285a6bda 1598 if (spacing > pixelsPerTick) break;
6a1aa64f
DV
1599 }
1600
1601 // Construct labels for the ticks
1602 var ticks = [];
ed11be50
DV
1603 var k;
1604 var k_labels = [];
1605 if (self.attr_("labelsKMB")) {
1606 k = 1000;
1607 k_labels = [ "K", "M", "B", "T" ];
1608 }
1609 if (self.attr_("labelsKMG2")) {
1610 if (k) self.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
1611 k = 1024;
1612 k_labels = [ "k", "M", "G", "T" ];
1613 }
1614
e21e69e2 1615 // Allow reverse y-axis if it's explicitly requested.
be7cdb11 1616 if (low_val > high_val) scale *= -1;
48a0ac91 1617
c6336f04
DV
1618 for (var i = 0; i < nTicks; i++) {
1619 var tickV = low_val + i * scale;
0af6e346 1620 var absTickV = Math.abs(tickV);
029da4b6 1621 var label = Dygraph.round_(tickV, 2);
ed11be50
DV
1622 if (k_labels.length) {
1623 // Round up to an appropriate unit.
1624 var n = k*k*k*k;
1625 for (var j = 3; j >= 0; j--, n /= k) {
1626 if (absTickV >= n) {
029da4b6 1627 label = Dygraph.round_(tickV / n, 1) + k_labels[j];
ed11be50
DV
1628 break;
1629 }
afefbcdb 1630 }
6a1aa64f
DV
1631 }
1632 ticks.push( {label: label, v: tickV} );
1633 }
1634 return ticks;
1635};
1636
1637/**
1638 * Adds appropriate ticks on the y-axis
1639 * @param {Number} minY The minimum Y value in the data set
1640 * @param {Number} maxY The maximum Y value in the data set
1641 * @private
1642 */
285a6bda 1643Dygraph.prototype.addYTicks_ = function(minY, maxY) {
6a1aa64f 1644 // Set the number of ticks so that the labels are human-friendly.
285a6bda
DV
1645 // TODO(danvk): make this an attribute as well.
1646 var ticks = Dygraph.numericTicks(minY, maxY, this);
6a1aa64f
DV
1647 this.layout_.updateOptions( { yAxis: [minY, maxY],
1648 yTicks: ticks } );
1649};
1650
5011e7a1
DV
1651// Computes the range of the data series (including confidence intervals).
1652// series is either [ [x1, y1], [x2, y2], ... ] or
1653// [ [x1, [y1, dev_low, dev_high]], [x2, [y2, dev_low, dev_high]], ...
1654// Returns [low, high]
1655Dygraph.prototype.extremeValues_ = function(series) {
1656 var minY = null, maxY = null;
1657
9922b78b 1658 var bars = this.attr_("errorBars") || this.attr_("customBars");
5011e7a1
DV
1659 if (bars) {
1660 // With custom bars, maxY is the max of the high values.
1661 for (var j = 0; j < series.length; j++) {
1662 var y = series[j][1][0];
1663 if (!y) continue;
1664 var low = y - series[j][1][1];
1665 var high = y + series[j][1][2];
1666 if (low > y) low = y; // this can happen with custom bars,
1667 if (high < y) high = y; // e.g. in tests/custom-bars.html
1668 if (maxY == null || high > maxY) {
1669 maxY = high;
1670 }
1671 if (minY == null || low < minY) {
1672 minY = low;
1673 }
1674 }
1675 } else {
1676 for (var j = 0; j < series.length; j++) {
1677 var y = series[j][1];
d12999d3 1678 if (y === null || isNaN(y)) continue;
5011e7a1
DV
1679 if (maxY == null || y > maxY) {
1680 maxY = y;
1681 }
1682 if (minY == null || y < minY) {
1683 minY = y;
1684 }
1685 }
1686 }
1687
1688 return [minY, maxY];
1689};
1690
6a1aa64f
DV
1691/**
1692 * Update the graph with new data. Data is in the format
1693 * [ [date1, val1, val2, ...], [date2, val1, val2, ...] if errorBars=false
1694 * or, if errorBars=true,
1695 * [ [date1, [val1,stddev1], [val2,stddev2], ...], [date2, ...], ...]
1696 * @param {Array.<Object>} data The data (see above)
1697 * @private
1698 */
285a6bda 1699Dygraph.prototype.drawGraph_ = function(data) {
fe0b7c03
DV
1700 // This is used to set the second parameter to drawCallback, below.
1701 var is_initial_draw = this.is_initial_draw_;
1702 this.is_initial_draw_ = false;
1703
3bd9c228 1704 var minY = null, maxY = null;
6a1aa64f 1705 this.layout_.removeAllDatasets();
285a6bda 1706 this.setColors_();
9317362d 1707 this.attrs_['pointSize'] = 0.5 * this.attr_('highlightCircleSize');
285a6bda 1708
f032c51d
AV
1709 var connectSeparatedPoints = this.attr_('connectSeparatedPoints');
1710
354e15ab
DE
1711 // Loop over the fields (series). Go from the last to the first,
1712 // because if they're stacked that's how we accumulate the values.
43af96e7 1713
354e15ab
DE
1714 var cumulative_y = []; // For stacked series.
1715 var datasets = [];
1716
1717 // Loop over all fields and create datasets
1718 for (var i = data[0].length - 1; i >= 1; i--) {
1cf11047
DV
1719 if (!this.visibility()[i - 1]) continue;
1720
6a1aa64f
DV
1721 var series = [];
1722 for (var j = 0; j < data.length; j++) {
4a634fc7 1723 if (data[j][i] != null || !connectSeparatedPoints) {
f032c51d 1724 var date = data[j][0];
563c70ca 1725 series.push([date, data[j][i]]);
f032c51d 1726 }
6a1aa64f
DV
1727 }
1728 series = this.rollingAverage(series, this.rollPeriod_);
1729
1730 // Prune down to the desired range, if necessary (for zooming)
1a26f3fb
DV
1731 // Because there can be lines going to points outside of the visible area,
1732 // we actually prune to visible points, plus one on either side.
9922b78b 1733 var bars = this.attr_("errorBars") || this.attr_("customBars");
6a1aa64f
DV
1734 if (this.dateWindow_) {
1735 var low = this.dateWindow_[0];
1736 var high= this.dateWindow_[1];
1737 var pruned = [];
1a26f3fb
DV
1738 // TODO(danvk): do binary search instead of linear search.
1739 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
1740 var firstIdx = null, lastIdx = null;
6a1aa64f 1741 for (var k = 0; k < series.length; k++) {
1a26f3fb
DV
1742 if (series[k][0] >= low && firstIdx === null) {
1743 firstIdx = k;
1744 }
1745 if (series[k][0] <= high) {
1746 lastIdx = k;
6a1aa64f
DV
1747 }
1748 }
1a26f3fb
DV
1749 if (firstIdx === null) firstIdx = 0;
1750 if (firstIdx > 0) firstIdx--;
1751 if (lastIdx === null) lastIdx = series.length - 1;
1752 if (lastIdx < series.length - 1) lastIdx++;
16269f6e 1753 this.boundaryIds_[i-1] = [firstIdx, lastIdx];
1a26f3fb
DV
1754 for (var k = firstIdx; k <= lastIdx; k++) {
1755 pruned.push(series[k]);
6a1aa64f
DV
1756 }
1757 series = pruned;
16269f6e
NAG
1758 } else {
1759 this.boundaryIds_[i-1] = [0, series.length-1];
6a1aa64f
DV
1760 }
1761
648acd28
DV
1762 var extremes = this.extremeValues_(series);
1763 var thisMinY = extremes[0];
1764 var thisMaxY = extremes[1];
61b78cd6
DV
1765 if (minY === null || thisMinY < minY) minY = thisMinY;
1766 if (maxY === null || thisMaxY > maxY) maxY = thisMaxY;
5011e7a1 1767
6a1aa64f 1768 if (bars) {
354e15ab
DE
1769 for (var j=0; j<series.length; j++) {
1770 val = [series[j][0], series[j][1][0], series[j][1][1], series[j][1][2]];
1771 series[j] = val;
1772 }
43af96e7 1773 } else if (this.attr_("stackedGraph")) {
43af96e7
NK
1774 var l = series.length;
1775 var actual_y;
1776 for (var j = 0; j < l; j++) {
354e15ab
DE
1777 // If one data set has a NaN, let all subsequent stacked
1778 // sets inherit the NaN -- only start at 0 for the first set.
1779 var x = series[j][0];
1780 if (cumulative_y[x] === undefined)
1781 cumulative_y[x] = 0;
43af96e7
NK
1782
1783 actual_y = series[j][1];
354e15ab 1784 cumulative_y[x] += actual_y;
43af96e7 1785
354e15ab 1786 series[j] = [x, cumulative_y[x]]
43af96e7 1787
354e15ab
DE
1788 if (!maxY || cumulative_y[x] > maxY)
1789 maxY = cumulative_y[x];
43af96e7 1790 }
6a1aa64f 1791 }
354e15ab
DE
1792
1793 datasets[i] = series;
6a1aa64f
DV
1794 }
1795
354e15ab 1796 for (var i = 1; i < datasets.length; i++) {
4523c1f6 1797 if (!this.visibility()[i - 1]) continue;
354e15ab 1798 this.layout_.addDataset(this.attr_("labels")[i], datasets[i]);
43af96e7
NK
1799 }
1800
6a1aa64f 1801 // Use some heuristics to come up with a good maxY value, unless it's been
8b83c6cc
RK
1802 // set explicitly by the developer or end-user (via drag)
1803 if (this.valueWindow_ != null) {
1804 this.addYTicks_(this.valueWindow_[0], this.valueWindow_[1]);
1805 this.displayedYRange_ = this.valueWindow_;
6a1aa64f 1806 } else {
d053ab5a
DV
1807 // This affects the calculation of span, below.
1808 if (this.attr_("includeZero") && minY > 0) {
1809 minY = 0;
1810 }
1811
6a1aa64f 1812 // Add some padding and round up to an integer to be human-friendly.
3bd9c228 1813 var span = maxY - minY;
93dfacfd
DV
1814 // special case: if we have no sense of scale, use +/-10% of the sole value.
1815 if (span == 0) { span = maxY; }
3bd9c228
DV
1816 var maxAxisY = maxY + 0.1 * span;
1817 var minAxisY = minY - 0.1 * span;
1818
1819 // Try to include zero and make it minAxisY (or maxAxisY) if it makes sense.
ceb009dd
DV
1820 if (minAxisY < 0 && minY >= 0) minAxisY = 0;
1821 if (maxAxisY > 0 && maxY <= 0) maxAxisY = 0;
3bd9c228
DV
1822
1823 if (this.attr_("includeZero")) {
1824 if (maxY < 0) maxAxisY = 0;
1825 if (minY > 0) minAxisY = 0;
1826 }
1827
1828 this.addYTicks_(minAxisY, maxAxisY);
3230c662 1829 this.displayedYRange_ = [minAxisY, maxAxisY];
6a1aa64f
DV
1830 }
1831
1832 this.addXTicks_();
1833
1834 // Tell PlotKit to use this new data and render itself
d033ae1c 1835 this.layout_.updateOptions({dateWindow: this.dateWindow_});
6a1aa64f
DV
1836 this.layout_.evaluateWithError();
1837 this.plotter_.clear();
1838 this.plotter_.render();
f6401bf6
DV
1839 this.canvas_.getContext('2d').clearRect(0, 0, this.canvas_.width,
1840 this.canvas_.height);
599fb4ad
DV
1841
1842 if (this.attr_("drawCallback") !== null) {
fe0b7c03 1843 this.attr_("drawCallback")(this, is_initial_draw);
599fb4ad 1844 }
6a1aa64f
DV
1845};
1846
1847/**
1848 * Calculates the rolling average of a data set.
1849 * If originalData is [label, val], rolls the average of those.
1850 * If originalData is [label, [, it's interpreted as [value, stddev]
1851 * and the roll is returned in the same form, with appropriately reduced
1852 * stddev for each value.
1853 * Note that this is where fractional input (i.e. '5/10') is converted into
1854 * decimal values.
1855 * @param {Array} originalData The data in the appropriate format (see above)
1856 * @param {Number} rollPeriod The number of days over which to average the data
1857 */
285a6bda 1858Dygraph.prototype.rollingAverage = function(originalData, rollPeriod) {
6a1aa64f
DV
1859 if (originalData.length < 2)
1860 return originalData;
1861 var rollPeriod = Math.min(rollPeriod, originalData.length - 1);
1862 var rollingData = [];
285a6bda 1863 var sigma = this.attr_("sigma");
6a1aa64f
DV
1864
1865 if (this.fractions_) {
1866 var num = 0;
1867 var den = 0; // numerator/denominator
1868 var mult = 100.0;
1869 for (var i = 0; i < originalData.length; i++) {
1870 num += originalData[i][1][0];
1871 den += originalData[i][1][1];
1872 if (i - rollPeriod >= 0) {
1873 num -= originalData[i - rollPeriod][1][0];
1874 den -= originalData[i - rollPeriod][1][1];
1875 }
1876
1877 var date = originalData[i][0];
1878 var value = den ? num / den : 0.0;
285a6bda 1879 if (this.attr_("errorBars")) {
6a1aa64f
DV
1880 if (this.wilsonInterval_) {
1881 // For more details on this confidence interval, see:
1882 // http://en.wikipedia.org/wiki/Binomial_confidence_interval
1883 if (den) {
1884 var p = value < 0 ? 0 : value, n = den;
1885 var pm = sigma * Math.sqrt(p*(1-p)/n + sigma*sigma/(4*n*n));
1886 var denom = 1 + sigma * sigma / den;
1887 var low = (p + sigma * sigma / (2 * den) - pm) / denom;
1888 var high = (p + sigma * sigma / (2 * den) + pm) / denom;
1889 rollingData[i] = [date,
1890 [p * mult, (p - low) * mult, (high - p) * mult]];
1891 } else {
1892 rollingData[i] = [date, [0, 0, 0]];
1893 }
1894 } else {
1895 var stddev = den ? sigma * Math.sqrt(value * (1 - value) / den) : 1.0;
1896 rollingData[i] = [date, [mult * value, mult * stddev, mult * stddev]];
1897 }
1898 } else {
1899 rollingData[i] = [date, mult * value];
1900 }
1901 }
9922b78b 1902 } else if (this.attr_("customBars")) {
f6885d6a
DV
1903 var low = 0;
1904 var mid = 0;
1905 var high = 0;
1906 var count = 0;
6a1aa64f
DV
1907 for (var i = 0; i < originalData.length; i++) {
1908 var data = originalData[i][1];
1909 var y = data[1];
1910 rollingData[i] = [originalData[i][0], [y, y - data[0], data[2] - y]];
f6885d6a 1911
8b91c51f 1912 if (y != null && !isNaN(y)) {
49a7d0d5
DV
1913 low += data[0];
1914 mid += y;
1915 high += data[2];
1916 count += 1;
1917 }
f6885d6a
DV
1918 if (i - rollPeriod >= 0) {
1919 var prev = originalData[i - rollPeriod];
8b91c51f 1920 if (prev[1][1] != null && !isNaN(prev[1][1])) {
49a7d0d5
DV
1921 low -= prev[1][0];
1922 mid -= prev[1][1];
1923 high -= prev[1][2];
1924 count -= 1;
1925 }
f6885d6a
DV
1926 }
1927 rollingData[i] = [originalData[i][0], [ 1.0 * mid / count,
1928 1.0 * (mid - low) / count,
1929 1.0 * (high - mid) / count ]];
2769de62 1930 }
6a1aa64f
DV
1931 } else {
1932 // Calculate the rolling average for the first rollPeriod - 1 points where
1933 // there is not enough data to roll over the full number of days
1934 var num_init_points = Math.min(rollPeriod - 1, originalData.length - 2);
285a6bda 1935 if (!this.attr_("errorBars")){
5011e7a1
DV
1936 if (rollPeriod == 1) {
1937 return originalData;
1938 }
1939
2847c1cf 1940 for (var i = 0; i < originalData.length; i++) {
6a1aa64f 1941 var sum = 0;
5011e7a1 1942 var num_ok = 0;
2847c1cf
DV
1943 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
1944 var y = originalData[j][1];
8b91c51f 1945 if (y == null || isNaN(y)) continue;
5011e7a1 1946 num_ok++;
2847c1cf 1947 sum += originalData[j][1];
6a1aa64f 1948 }
5011e7a1 1949 if (num_ok) {
2847c1cf 1950 rollingData[i] = [originalData[i][0], sum / num_ok];
5011e7a1 1951 } else {
2847c1cf 1952 rollingData[i] = [originalData[i][0], null];
5011e7a1 1953 }
6a1aa64f 1954 }
2847c1cf
DV
1955
1956 } else {
1957 for (var i = 0; i < originalData.length; i++) {
6a1aa64f
DV
1958 var sum = 0;
1959 var variance = 0;
5011e7a1 1960 var num_ok = 0;
2847c1cf 1961 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
5011e7a1 1962 var y = originalData[j][1][0];
8b91c51f 1963 if (y == null || isNaN(y)) continue;
5011e7a1 1964 num_ok++;
6a1aa64f
DV
1965 sum += originalData[j][1][0];
1966 variance += Math.pow(originalData[j][1][1], 2);
1967 }
5011e7a1
DV
1968 if (num_ok) {
1969 var stddev = Math.sqrt(variance) / num_ok;
1970 rollingData[i] = [originalData[i][0],
1971 [sum / num_ok, sigma * stddev, sigma * stddev]];
1972 } else {
1973 rollingData[i] = [originalData[i][0], [null, null, null]];
1974 }
6a1aa64f
DV
1975 }
1976 }
1977 }
1978
1979 return rollingData;
1980};
1981
1982/**
1983 * Parses a date, returning the number of milliseconds since epoch. This can be
285a6bda
DV
1984 * passed in as an xValueParser in the Dygraph constructor.
1985 * TODO(danvk): enumerate formats that this understands.
6a1aa64f
DV
1986 * @param {String} A date in YYYYMMDD format.
1987 * @return {Number} Milliseconds since epoch.
1988 * @public
1989 */
285a6bda 1990Dygraph.dateParser = function(dateStr, self) {
6a1aa64f 1991 var dateStrSlashed;
285a6bda 1992 var d;
986a5026 1993 if (dateStr.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
6a1aa64f 1994 dateStrSlashed = dateStr.replace("-", "/", "g");
353a0294
DV
1995 while (dateStrSlashed.search("-") != -1) {
1996 dateStrSlashed = dateStrSlashed.replace("-", "/");
1997 }
285a6bda 1998 d = Date.parse(dateStrSlashed);
2769de62 1999 } else if (dateStr.length == 8) { // e.g. '20090712'
285a6bda 2000 // TODO(danvk): remove support for this format. It's confusing.
6a1aa64f
DV
2001 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2)
2002 + "/" + dateStr.substr(6,2);
285a6bda 2003 d = Date.parse(dateStrSlashed);
2769de62
DV
2004 } else {
2005 // Any format that Date.parse will accept, e.g. "2009/07/12" or
2006 // "2009/07/12 12:34:56"
285a6bda
DV
2007 d = Date.parse(dateStr);
2008 }
2009
2010 if (!d || isNaN(d)) {
2011 self.error("Couldn't parse " + dateStr + " as a date");
2012 }
2013 return d;
2014};
2015
2016/**
2017 * Detects the type of the str (date or numeric) and sets the various
2018 * formatting attributes in this.attrs_ based on this type.
2019 * @param {String} str An x value.
2020 * @private
2021 */
2022Dygraph.prototype.detectTypeFromString_ = function(str) {
2023 var isDate = false;
2024 if (str.indexOf('-') >= 0 ||
2025 str.indexOf('/') >= 0 ||
2026 isNaN(parseFloat(str))) {
2027 isDate = true;
2028 } else if (str.length == 8 && str > '19700101' && str < '20371231') {
2029 // TODO(danvk): remove support for this format.
2030 isDate = true;
2031 }
2032
2033 if (isDate) {
2034 this.attrs_.xValueFormatter = Dygraph.dateString_;
2035 this.attrs_.xValueParser = Dygraph.dateParser;
2036 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 2037 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda
DV
2038 } else {
2039 this.attrs_.xValueFormatter = function(x) { return x; };
2040 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
2041 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 2042 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
6a1aa64f 2043 }
6a1aa64f
DV
2044};
2045
2046/**
2047 * Parses a string in a special csv format. We expect a csv file where each
2048 * line is a date point, and the first field in each line is the date string.
2049 * We also expect that all remaining fields represent series.
285a6bda 2050 * if the errorBars attribute is set, then interpret the fields as:
6a1aa64f
DV
2051 * date, series1, stddev1, series2, stddev2, ...
2052 * @param {Array.<Object>} data See above.
2053 * @private
285a6bda
DV
2054 *
2055 * @return Array.<Object> An array with one entry for each row. These entries
2056 * are an array of cells in that row. The first entry is the parsed x-value for
2057 * the row. The second, third, etc. are the y-values. These can take on one of
2058 * three forms, depending on the CSV and constructor parameters:
2059 * 1. numeric value
2060 * 2. [ value, stddev ]
2061 * 3. [ low value, center value, high value ]
6a1aa64f 2062 */
285a6bda 2063Dygraph.prototype.parseCSV_ = function(data) {
6a1aa64f
DV
2064 var ret = [];
2065 var lines = data.split("\n");
3d67f03b
DV
2066
2067 // Use the default delimiter or fall back to a tab if that makes sense.
2068 var delim = this.attr_('delimiter');
2069 if (lines[0].indexOf(delim) == -1 && lines[0].indexOf('\t') >= 0) {
2070 delim = '\t';
2071 }
2072
285a6bda 2073 var start = 0;
6a1aa64f 2074 if (this.labelsFromCSV_) {
285a6bda 2075 start = 1;
3d67f03b 2076 this.attrs_.labels = lines[0].split(delim);
6a1aa64f
DV
2077 }
2078
03b522a4
DV
2079 // Parse the x as a float or return null if it's not a number.
2080 var parseFloatOrNull = function(x) {
41333ec0
DV
2081 var val = parseFloat(x);
2082 return isNaN(val) ? null : val;
03b522a4
DV
2083 };
2084
285a6bda
DV
2085 var xParser;
2086 var defaultParserSet = false; // attempt to auto-detect x value type
2087 var expectedCols = this.attr_("labels").length;
987840a2 2088 var outOfOrder = false;
6a1aa64f
DV
2089 for (var i = start; i < lines.length; i++) {
2090 var line = lines[i];
2091 if (line.length == 0) continue; // skip blank lines
3d67f03b
DV
2092 if (line[0] == '#') continue; // skip comment lines
2093 var inFields = line.split(delim);
285a6bda 2094 if (inFields.length < 2) continue;
6a1aa64f
DV
2095
2096 var fields = [];
285a6bda
DV
2097 if (!defaultParserSet) {
2098 this.detectTypeFromString_(inFields[0]);
2099 xParser = this.attr_("xValueParser");
2100 defaultParserSet = true;
2101 }
2102 fields[0] = xParser(inFields[0], this);
6a1aa64f
DV
2103
2104 // If fractions are expected, parse the numbers as "A/B"
2105 if (this.fractions_) {
2106 for (var j = 1; j < inFields.length; j++) {
2107 // TODO(danvk): figure out an appropriate way to flag parse errors.
2108 var vals = inFields[j].split("/");
03b522a4 2109 fields[j] = [parseFloatOrNull(vals[0]), parseFloatOrNull(vals[1])];
6a1aa64f 2110 }
285a6bda 2111 } else if (this.attr_("errorBars")) {
6a1aa64f
DV
2112 // If there are error bars, values are (value, stddev) pairs
2113 for (var j = 1; j < inFields.length; j += 2)
03b522a4
DV
2114 fields[(j + 1) / 2] = [parseFloatOrNull(inFields[j]),
2115 parseFloatOrNull(inFields[j + 1])];
9922b78b 2116 } else if (this.attr_("customBars")) {
6a1aa64f
DV
2117 // Bars are a low;center;high tuple
2118 for (var j = 1; j < inFields.length; j++) {
2119 var vals = inFields[j].split(";");
03b522a4
DV
2120 fields[j] = [ parseFloatOrNull(vals[0]),
2121 parseFloatOrNull(vals[1]),
2122 parseFloatOrNull(vals[2]) ];
6a1aa64f
DV
2123 }
2124 } else {
2125 // Values are just numbers
285a6bda 2126 for (var j = 1; j < inFields.length; j++) {
03b522a4 2127 fields[j] = parseFloatOrNull(inFields[j]);
285a6bda 2128 }
6a1aa64f 2129 }
987840a2
DV
2130 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
2131 outOfOrder = true;
2132 }
6a1aa64f 2133 ret.push(fields);
285a6bda
DV
2134
2135 if (fields.length != expectedCols) {
2136 this.error("Number of columns in line " + i + " (" + fields.length +
2137 ") does not agree with number of labels (" + expectedCols +
2138 ") " + line);
2139 }
6a1aa64f 2140 }
987840a2
DV
2141
2142 if (outOfOrder) {
2143 this.warn("CSV is out of order; order it correctly to speed loading.");
2144 ret.sort(function(a,b) { return a[0] - b[0] });
2145 }
2146
6a1aa64f
DV
2147 return ret;
2148};
2149
2150/**
285a6bda
DV
2151 * The user has provided their data as a pre-packaged JS array. If the x values
2152 * are numeric, this is the same as dygraphs' internal format. If the x values
2153 * are dates, we need to convert them from Date objects to ms since epoch.
2154 * @param {Array.<Object>} data
2155 * @return {Array.<Object>} data with numeric x values.
2156 */
2157Dygraph.prototype.parseArray_ = function(data) {
2158 // Peek at the first x value to see if it's numeric.
2159 if (data.length == 0) {
2160 this.error("Can't plot empty data set");
2161 return null;
2162 }
2163 if (data[0].length == 0) {
2164 this.error("Data set cannot contain an empty row");
2165 return null;
2166 }
2167
2168 if (this.attr_("labels") == null) {
2169 this.warn("Using default labels. Set labels explicitly via 'labels' " +
2170 "in the options parameter");
2171 this.attrs_.labels = [ "X" ];
2172 for (var i = 1; i < data[0].length; i++) {
2173 this.attrs_.labels.push("Y" + i);
2174 }
2175 }
2176
2dda3850 2177 if (Dygraph.isDateLike(data[0][0])) {
285a6bda
DV
2178 // Some intelligent defaults for a date x-axis.
2179 this.attrs_.xValueFormatter = Dygraph.dateString_;
bf640e56 2180 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda
DV
2181 this.attrs_.xTicker = Dygraph.dateTicker;
2182
2183 // Assume they're all dates.
e3ab7b40 2184 var parsedData = Dygraph.clone(data);
285a6bda
DV
2185 for (var i = 0; i < data.length; i++) {
2186 if (parsedData[i].length == 0) {
a323ff4a 2187 this.error("Row " + (1 + i) + " of data is empty");
285a6bda
DV
2188 return null;
2189 }
2190 if (parsedData[i][0] == null
3a909ec5
DV
2191 || typeof(parsedData[i][0].getTime) != 'function'
2192 || isNaN(parsedData[i][0].getTime())) {
be96a1f5 2193 this.error("x value in row " + (1 + i) + " is not a Date");
285a6bda
DV
2194 return null;
2195 }
2196 parsedData[i][0] = parsedData[i][0].getTime();
2197 }
2198 return parsedData;
2199 } else {
2200 // Some intelligent defaults for a numeric x-axis.
2201 this.attrs_.xValueFormatter = function(x) { return x; };
2202 this.attrs_.xTicker = Dygraph.numericTicks;
2203 return data;
2204 }
2205};
2206
2207/**
79420a1e
DV
2208 * Parses a DataTable object from gviz.
2209 * The data is expected to have a first column that is either a date or a
2210 * number. All subsequent columns must be numbers. If there is a clear mismatch
2211 * between this.xValueParser_ and the type of the first column, it will be
a685723c 2212 * fixed. Fills out rawData_.
79420a1e
DV
2213 * @param {Array.<Object>} data See above.
2214 * @private
2215 */
285a6bda 2216Dygraph.prototype.parseDataTable_ = function(data) {
79420a1e
DV
2217 var cols = data.getNumberOfColumns();
2218 var rows = data.getNumberOfRows();
2219
d955e223 2220 var indepType = data.getColumnType(0);
4440f6c8 2221 if (indepType == 'date' || indepType == 'datetime') {
285a6bda
DV
2222 this.attrs_.xValueFormatter = Dygraph.dateString_;
2223 this.attrs_.xValueParser = Dygraph.dateParser;
2224 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 2225 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
33127159 2226 } else if (indepType == 'number') {
285a6bda
DV
2227 this.attrs_.xValueFormatter = function(x) { return x; };
2228 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
2229 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 2230 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
285a6bda 2231 } else {
987840a2
DV
2232 this.error("only 'date', 'datetime' and 'number' types are supported for " +
2233 "column 1 of DataTable input (Got '" + indepType + "')");
79420a1e
DV
2234 return null;
2235 }
2236
a685723c
DV
2237 // Array of the column indices which contain data (and not annotations).
2238 var colIdx = [];
2239 var annotationCols = {}; // data index -> [annotation cols]
2240 var hasAnnotations = false;
2241 for (var i = 1; i < cols; i++) {
2242 var type = data.getColumnType(i);
2243 if (type == 'number') {
2244 colIdx.push(i);
2245 } else if (type == 'string' && this.attr_('displayAnnotations')) {
2246 // This is OK -- it's an annotation column.
2247 var dataIdx = colIdx[colIdx.length - 1];
2248 if (!annotationCols.hasOwnProperty(dataIdx)) {
2249 annotationCols[dataIdx] = [i];
2250 } else {
2251 annotationCols[dataIdx].push(i);
2252 }
2253 hasAnnotations = true;
2254 } else {
2255 this.error("Only 'number' is supported as a dependent type with Gviz." +
2256 " 'string' is only supported if displayAnnotations is true");
2257 }
2258 }
2259
2260 // Read column labels
2261 // TODO(danvk): add support back for errorBars
2262 var labels = [data.getColumnLabel(0)];
2263 for (var i = 0; i < colIdx.length; i++) {
2264 labels.push(data.getColumnLabel(colIdx[i]));
2265 }
2266 this.attrs_.labels = labels;
2267 cols = labels.length;
2268
79420a1e 2269 var ret = [];
987840a2 2270 var outOfOrder = false;
a685723c 2271 var annotations = [];
79420a1e
DV
2272 for (var i = 0; i < rows; i++) {
2273 var row = [];
debe4434
DV
2274 if (typeof(data.getValue(i, 0)) === 'undefined' ||
2275 data.getValue(i, 0) === null) {
2276 this.warning("Ignoring row " + i +
2277 " of DataTable because of undefined or null first column.");
2278 continue;
2279 }
2280
c21d2c2d 2281 if (indepType == 'date' || indepType == 'datetime') {
d955e223
DV
2282 row.push(data.getValue(i, 0).getTime());
2283 } else {
2284 row.push(data.getValue(i, 0));
2285 }
3e3f84e4 2286 if (!this.attr_("errorBars")) {
a685723c
DV
2287 for (var j = 0; j < colIdx.length; j++) {
2288 var col = colIdx[j];
2289 row.push(data.getValue(i, col));
2290 if (hasAnnotations &&
2291 annotationCols.hasOwnProperty(col) &&
2292 data.getValue(i, annotationCols[col][0]) != null) {
2293 var ann = {};
2294 ann.series = data.getColumnLabel(col);
2295 ann.xval = row[0];
2296 ann.shortText = String.fromCharCode(65 /* A */ + annotations.length)
2297 ann.text = '';
2298 for (var k = 0; k < annotationCols[col].length; k++) {
2299 if (k) ann.text += "\n";
2300 ann.text += data.getValue(i, annotationCols[col][k]);
2301 }
2302 annotations.push(ann);
2303 }
3e3f84e4
DV
2304 }
2305 } else {
2306 for (var j = 0; j < cols - 1; j++) {
2307 row.push([ data.getValue(i, 1 + 2 * j), data.getValue(i, 2 + 2 * j) ]);
2308 }
79420a1e 2309 }
987840a2
DV
2310 if (ret.length > 0 && row[0] < ret[ret.length - 1][0]) {
2311 outOfOrder = true;
2312 }
243d96e8 2313 ret.push(row);
79420a1e 2314 }
987840a2
DV
2315
2316 if (outOfOrder) {
2317 this.warn("DataTable is out of order; order it correctly to speed loading.");
2318 ret.sort(function(a,b) { return a[0] - b[0] });
2319 }
a685723c
DV
2320 this.rawData_ = ret;
2321
2322 if (annotations.length > 0) {
2323 this.setAnnotations(annotations, true);
2324 }
79420a1e
DV
2325}
2326
24e5350c 2327// These functions are all based on MochiKit.
fc80a396
DV
2328Dygraph.update = function (self, o) {
2329 if (typeof(o) != 'undefined' && o !== null) {
2330 for (var k in o) {
85b99f0b
DV
2331 if (o.hasOwnProperty(k)) {
2332 self[k] = o[k];
2333 }
fc80a396
DV
2334 }
2335 }
2336 return self;
2337};
2338
2dda3850
DV
2339Dygraph.isArrayLike = function (o) {
2340 var typ = typeof(o);
2341 if (
c21d2c2d 2342 (typ != 'object' && !(typ == 'function' &&
2dda3850
DV
2343 typeof(o.item) == 'function')) ||
2344 o === null ||
2345 typeof(o.length) != 'number' ||
2346 o.nodeType === 3
2347 ) {
2348 return false;
2349 }
2350 return true;
2351};
2352
2353Dygraph.isDateLike = function (o) {
2354 if (typeof(o) != "object" || o === null ||
2355 typeof(o.getTime) != 'function') {
2356 return false;
2357 }
2358 return true;
2359};
2360
e3ab7b40
DV
2361Dygraph.clone = function(o) {
2362 // TODO(danvk): figure out how MochiKit's version works
2363 var r = [];
2364 for (var i = 0; i < o.length; i++) {
2365 if (Dygraph.isArrayLike(o[i])) {
2366 r.push(Dygraph.clone(o[i]));
2367 } else {
2368 r.push(o[i]);
2369 }
2370 }
2371 return r;
24e5350c
DV
2372};
2373
2dda3850 2374
79420a1e 2375/**
6a1aa64f
DV
2376 * Get the CSV data. If it's in a function, call that function. If it's in a
2377 * file, do an XMLHttpRequest to get it.
2378 * @private
2379 */
285a6bda 2380Dygraph.prototype.start_ = function() {
6a1aa64f 2381 if (typeof this.file_ == 'function') {
285a6bda 2382 // CSV string. Pretend we got it via XHR.
6a1aa64f 2383 this.loadedEvent_(this.file_());
2dda3850 2384 } else if (Dygraph.isArrayLike(this.file_)) {
285a6bda
DV
2385 this.rawData_ = this.parseArray_(this.file_);
2386 this.drawGraph_(this.rawData_);
79420a1e
DV
2387 } else if (typeof this.file_ == 'object' &&
2388 typeof this.file_.getColumnRange == 'function') {
2389 // must be a DataTable from gviz.
a685723c 2390 this.parseDataTable_(this.file_);
79420a1e 2391 this.drawGraph_(this.rawData_);
285a6bda
DV
2392 } else if (typeof this.file_ == 'string') {
2393 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
2394 if (this.file_.indexOf('\n') >= 0) {
2395 this.loadedEvent_(this.file_);
2396 } else {
2397 var req = new XMLHttpRequest();
2398 var caller = this;
2399 req.onreadystatechange = function () {
2400 if (req.readyState == 4) {
2401 if (req.status == 200) {
2402 caller.loadedEvent_(req.responseText);
2403 }
6a1aa64f 2404 }
285a6bda 2405 };
6a1aa64f 2406
285a6bda
DV
2407 req.open("GET", this.file_, true);
2408 req.send(null);
2409 }
2410 } else {
2411 this.error("Unknown data format: " + (typeof this.file_));
6a1aa64f
DV
2412 }
2413};
2414
2415/**
2416 * Changes various properties of the graph. These can include:
2417 * <ul>
2418 * <li>file: changes the source data for the graph</li>
2419 * <li>errorBars: changes whether the data contains stddev</li>
2420 * </ul>
2421 * @param {Object} attrs The new properties and values
2422 */
285a6bda
DV
2423Dygraph.prototype.updateOptions = function(attrs) {
2424 // TODO(danvk): this is a mess. Rethink this function.
6a1aa64f
DV
2425 if (attrs.rollPeriod) {
2426 this.rollPeriod_ = attrs.rollPeriod;
2427 }
2428 if (attrs.dateWindow) {
2429 this.dateWindow_ = attrs.dateWindow;
2430 }
2431 if (attrs.valueRange) {
2432 this.valueRange_ = attrs.valueRange;
2433 }
fc80a396 2434 Dygraph.update(this.user_attrs_, attrs);
87bb7958 2435 Dygraph.update(this.renderOptions_, attrs);
285a6bda
DV
2436
2437 this.labelsFromCSV_ = (this.attr_("labels") == null);
2438
2439 // TODO(danvk): this doesn't match the constructor logic
2440 this.layout_.updateOptions({ 'errorBars': this.attr_("errorBars") });
5e50289f 2441 if (attrs['file']) {
6a1aa64f
DV
2442 this.file_ = attrs['file'];
2443 this.start_();
2444 } else {
2445 this.drawGraph_(this.rawData_);
2446 }
2447};
2448
2449/**
697e70b2
DV
2450 * Resizes the dygraph. If no parameters are specified, resizes to fill the
2451 * containing div (which has presumably changed size since the dygraph was
2452 * instantiated. If the width/height are specified, the div will be resized.
964f30c6
DV
2453 *
2454 * This is far more efficient than destroying and re-instantiating a
2455 * Dygraph, since it doesn't have to reparse the underlying data.
2456 *
697e70b2
DV
2457 * @param {Number} width Width (in pixels)
2458 * @param {Number} height Height (in pixels)
2459 */
2460Dygraph.prototype.resize = function(width, height) {
e8c7ef86
DV
2461 if (this.resize_lock) {
2462 return;
2463 }
2464 this.resize_lock = true;
2465
697e70b2
DV
2466 if ((width === null) != (height === null)) {
2467 this.warn("Dygraph.resize() should be called with zero parameters or " +
2468 "two non-NULL parameters. Pretending it was zero.");
2469 width = height = null;
2470 }
2471
b16e6369 2472 // TODO(danvk): there should be a clear() method.
697e70b2 2473 this.maindiv_.innerHTML = "";
b16e6369
DV
2474 this.attrs_.labelsDiv = null;
2475
697e70b2
DV
2476 if (width) {
2477 this.maindiv_.style.width = width + "px";
2478 this.maindiv_.style.height = height + "px";
2479 this.width_ = width;
2480 this.height_ = height;
2481 } else {
2482 this.width_ = this.maindiv_.offsetWidth;
2483 this.height_ = this.maindiv_.offsetHeight;
2484 }
2485
2486 this.createInterface_();
964f30c6 2487 this.drawGraph_(this.rawData_);
e8c7ef86
DV
2488
2489 this.resize_lock = false;
697e70b2
DV
2490};
2491
2492/**
6a1aa64f
DV
2493 * Adjusts the number of days in the rolling average. Updates the graph to
2494 * reflect the new averaging period.
2495 * @param {Number} length Number of days over which to average the data.
2496 */
285a6bda 2497Dygraph.prototype.adjustRoll = function(length) {
6a1aa64f
DV
2498 this.rollPeriod_ = length;
2499 this.drawGraph_(this.rawData_);
2500};
540d00f1 2501
f8cfec73 2502/**
1cf11047
DV
2503 * Returns a boolean array of visibility statuses.
2504 */
2505Dygraph.prototype.visibility = function() {
2506 // Do lazy-initialization, so that this happens after we know the number of
2507 // data series.
2508 if (!this.attr_("visibility")) {
f38dec01 2509 this.attrs_["visibility"] = [];
1cf11047
DV
2510 }
2511 while (this.attr_("visibility").length < this.rawData_[0].length - 1) {
f38dec01 2512 this.attr_("visibility").push(true);
1cf11047
DV
2513 }
2514 return this.attr_("visibility");
2515};
2516
2517/**
2518 * Changes the visiblity of a series.
2519 */
2520Dygraph.prototype.setVisibility = function(num, value) {
2521 var x = this.visibility();
2522 if (num < 0 && num >= x.length) {
2523 this.warn("invalid series number in setVisibility: " + num);
2524 } else {
2525 x[num] = value;
2526 this.drawGraph_(this.rawData_);
2527 }
2528};
2529
2530/**
5c528fa2
DV
2531 * Update the list of annotations and redraw the chart.
2532 */
a685723c 2533Dygraph.prototype.setAnnotations = function(ann, suppressDraw) {
5c528fa2
DV
2534 this.annotations_ = ann;
2535 this.layout_.setAnnotations(this.annotations_);
a685723c
DV
2536 if (!suppressDraw) {
2537 this.drawGraph_(this.rawData_);
2538 }
5c528fa2
DV
2539};
2540
2541/**
2542 * Return the list of annotations.
2543 */
2544Dygraph.prototype.annotations = function() {
2545 return this.annotations_;
2546};
2547
2548Dygraph.addAnnotationRule = function() {
2549 if (Dygraph.addedAnnotationCSS) return;
2550
18a016b1
DV
2551 var mysheet;
2552 if (document.styleSheets.length > 0) {
2553 mysheet = document.styleSheets[0];
2554 } else {
2555 var styleSheetElement = document.createElement("style");
2556 styleSheetElement.type = "text/css";
2557 document.getElementsByTagName("head")[0].appendChild(styleSheetElement);
2558 for(i = 0; i < document.styleSheets.length; i++) {
2559 if (document.styleSheets[i].disabled) continue;
2560 mysheet = document.styleSheets[i];
2561 }
2562 }
2563
5c528fa2
DV
2564 var rule = "border: 1px solid black; " +
2565 "background-color: white; " +
2566 "text-align: center;";
2567 if (mysheet.insertRule) { // Firefox
b39466eb 2568 mysheet.insertRule(".dygraphDefaultAnnotation { " + rule + " }", 0);
5c528fa2
DV
2569 } else if (mysheet.addRule) { // IE
2570 mysheet.addRule(".dygraphDefaultAnnotation", rule);
2571 }
2572
2573 Dygraph.addedAnnotationCSS = true;
2574}
2575
2576/**
f8cfec73
DV
2577 * Create a new canvas element. This is more complex than a simple
2578 * document.createElement("canvas") because of IE and excanvas.
2579 */
2580Dygraph.createCanvas = function() {
2581 var canvas = document.createElement("canvas");
2582
2583 isIE = (/MSIE/.test(navigator.userAgent) && !window.opera);
2584 if (isIE) {
2585 canvas = G_vmlCanvasManager.initElement(canvas);
2586 }
2587
2588 return canvas;
2589};
2590
540d00f1
DV
2591
2592/**
285a6bda 2593 * A wrapper around Dygraph that implements the gviz API.
540d00f1
DV
2594 * @param {Object} container The DOM object the visualization should live in.
2595 */
285a6bda 2596Dygraph.GVizChart = function(container) {
540d00f1
DV
2597 this.container = container;
2598}
2599
285a6bda 2600Dygraph.GVizChart.prototype.draw = function(data, options) {
540d00f1 2601 this.container.innerHTML = '';
285a6bda 2602 this.date_graph = new Dygraph(this.container, data, options);
540d00f1 2603}
285a6bda 2604
239c712d
NAG
2605/**
2606 * Google charts compatible setSelection
50360fd0 2607 * Only row selection is supported, all points in the row will be highlighted
239c712d
NAG
2608 * @param {Array} array of the selected cells
2609 * @public
2610 */
2611Dygraph.GVizChart.prototype.setSelection = function(selection_array) {
2612 var row = false;
2613 if (selection_array.length) {
2614 row = selection_array[0].row;
2615 }
2616 this.date_graph.setSelection(row);
2617}
2618
103b7292
NAG
2619/**
2620 * Google charts compatible getSelection implementation
2621 * @return {Array} array of the selected cells
2622 * @public
2623 */
2624Dygraph.GVizChart.prototype.getSelection = function() {
2625 var selection = [];
50360fd0 2626
103b7292 2627 var row = this.date_graph.getSelection();
50360fd0 2628
103b7292 2629 if (row < 0) return selection;
50360fd0 2630
103b7292
NAG
2631 col = 1;
2632 for (var i in this.date_graph.layout_.datasets) {
2633 selection.push({row: row, column: col});
2634 col++;
2635 }
2636
2637 return selection;
2638}
2639
285a6bda
DV
2640// Older pages may still use this name.
2641DateGraph = Dygraph;