Update index.html docs to clarify callbacks and features.
[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);
8b83c6cc 1015 var maxValue = r[1];
937029df
RK
1016 r = this.toDataCoords(null, highY);
1017 var minValue = r[1];
8b83c6cc
RK
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) {
937029df 1032 this.valueWindow_ = [minValue, maxValue];
8b83c6cc
RK
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) {
437c0979
RK
1058 // Putting the drawing operation before the callback because it resets
1059 // yAxisRange.
1060 this.drawGraph_(this.rawData_);
8b83c6cc
RK
1061 if (this.attr_("zoomCallback")) {
1062 var minDate = this.rawData_[0][0];
1063 var maxDate = this.rawData_[this.rawData_.length - 1][0];
a2db51b5
RK
1064 var minValue = this.yAxisRange()[0];
1065 var maxValue = this.yAxisRange()[1];
8b83c6cc
RK
1066 this.attr_("zoomCallback")(minDate, maxDate, minValue, maxValue);
1067 }
67e650dc 1068 }
6a1aa64f
DV
1069};
1070
1071/**
1072 * When the mouse moves in the canvas, display information about a nearby data
1073 * point and draw dots over those points in the data series. This function
1074 * takes care of cleanup of previously-drawn dots.
1075 * @param {Object} event The mousemove event from the browser.
1076 * @private
1077 */
285a6bda 1078Dygraph.prototype.mouseMove_ = function(event) {
eb7bf005 1079 var canvasx = Dygraph.pageX(event) - Dygraph.findPosX(this.mouseEventElement_);
6a1aa64f
DV
1080 var points = this.layout_.points;
1081
1082 var lastx = -1;
1083 var lasty = -1;
1084
1085 // Loop through all the points and find the date nearest to our current
1086 // location.
1087 var minDist = 1e+100;
1088 var idx = -1;
1089 for (var i = 0; i < points.length; i++) {
1090 var dist = Math.abs(points[i].canvasx - canvasx);
f032c51d 1091 if (dist > minDist) continue;
6a1aa64f
DV
1092 minDist = dist;
1093 idx = i;
1094 }
1095 if (idx >= 0) lastx = points[idx].xval;
1096 // Check that you can really highlight the last day's data
1097 if (canvasx > points[points.length-1].canvasx)
1098 lastx = points[points.length-1].xval;
1099
1100 // Extract the points we've selected
b258a3da 1101 this.selPoints_ = [];
50360fd0 1102 var l = points.length;
416b05ad
NK
1103 if (!this.attr_("stackedGraph")) {
1104 for (var i = 0; i < l; i++) {
1105 if (points[i].xval == lastx) {
1106 this.selPoints_.push(points[i]);
1107 }
1108 }
1109 } else {
354e15ab
DE
1110 // Need to 'unstack' points starting from the bottom
1111 var cumulative_sum = 0;
416b05ad
NK
1112 for (var i = l - 1; i >= 0; i--) {
1113 if (points[i].xval == lastx) {
354e15ab 1114 var p = {}; // Clone the point since we modify it
d4139cd8
NK
1115 for (var k in points[i]) {
1116 p[k] = points[i][k];
50360fd0
NK
1117 }
1118 p.yval -= cumulative_sum;
1119 cumulative_sum += p.yval;
d4139cd8 1120 this.selPoints_.push(p);
12e4c741 1121 }
6a1aa64f 1122 }
354e15ab 1123 this.selPoints_.reverse();
6a1aa64f
DV
1124 }
1125
b258a3da 1126 if (this.attr_("highlightCallback")) {
a4c6a67c 1127 var px = this.lastx_;
dd082dda 1128 if (px !== null && lastx != px) {
344ba8c0 1129 // only fire if the selected point has changed.
50360fd0 1130 this.attr_("highlightCallback")(event, lastx, this.selPoints_);
43af96e7 1131 }
12e4c741 1132 }
43af96e7 1133
239c712d
NAG
1134 // Save last x position for callbacks.
1135 this.lastx_ = lastx;
50360fd0 1136
239c712d
NAG
1137 this.updateSelection_();
1138};
b258a3da 1139
239c712d
NAG
1140/**
1141 * Draw dots over the selectied points in the data series. This function
1142 * takes care of cleanup of previously-drawn dots.
1143 * @private
1144 */
1145Dygraph.prototype.updateSelection_ = function() {
6a1aa64f 1146 // Clear the previously drawn vertical, if there is one
285a6bda 1147 var circleSize = this.attr_('highlightCircleSize');
6a1aa64f
DV
1148 var ctx = this.canvas_.getContext("2d");
1149 if (this.previousVerticalX_ >= 0) {
1150 var px = this.previousVerticalX_;
1151 ctx.clearRect(px - circleSize - 1, 0, 2 * circleSize + 2, this.height_);
1152 }
1153
584ceeaa
DV
1154 var isOK = function(x) { return x && !isNaN(x); };
1155
d160cc3b 1156 if (this.selPoints_.length > 0) {
b258a3da 1157 var canvasx = this.selPoints_[0].canvasx;
6a1aa64f
DV
1158
1159 // Set the status message to indicate the selected point(s)
239c712d 1160 var replace = this.attr_('xValueFormatter')(this.lastx_, this) + ":";
50360fd0 1161 var fmtFunc = this.attr_('yValueFormatter');
6a1aa64f 1162 var clen = this.colors_.length;
d160cc3b
NK
1163
1164 if (this.attr_('showLabelsOnHighlight')) {
1165 // Set the status message to indicate the selected point(s)
d160cc3b 1166 for (var i = 0; i < this.selPoints_.length; i++) {
bcd3ebf0 1167 if (!this.attr_("labelsShowZeroValues") && this.selPoints_[i].yval == 0) continue;
d160cc3b
NK
1168 if (!isOK(this.selPoints_[i].canvasy)) continue;
1169 if (this.attr_("labelsSeparateLines")) {
1170 replace += "<br/>";
1171 }
1172 var point = this.selPoints_[i];
1173 var c = new RGBColor(this.colors_[i%clen]);
029da4b6 1174 var yval = fmtFunc(point.yval);
d160cc3b
NK
1175 replace += " <b><font color='" + c.toHex() + "'>"
1176 + point.name + "</font></b>:"
1177 + yval;
6a1aa64f 1178 }
50360fd0 1179
d160cc3b 1180 this.attr_("labelsDiv").innerHTML = replace;
6a1aa64f 1181 }
6a1aa64f 1182
6a1aa64f 1183 // Draw colored circles over the center of each selected point
43af96e7 1184 ctx.save();
b258a3da 1185 for (var i = 0; i < this.selPoints_.length; i++) {
f032c51d 1186 if (!isOK(this.selPoints_[i].canvasy)) continue;
6a1aa64f 1187 ctx.beginPath();
563c70ca 1188 ctx.fillStyle = this.plotter_.colors[this.selPoints_[i].name];
f032c51d 1189 ctx.arc(canvasx, this.selPoints_[i].canvasy, circleSize,
7bf6a9fe 1190 0, 2 * Math.PI, false);
6a1aa64f
DV
1191 ctx.fill();
1192 }
1193 ctx.restore();
1194
1195 this.previousVerticalX_ = canvasx;
1196 }
1197};
1198
1199/**
239c712d
NAG
1200 * Set manually set selected dots, and display information about them
1201 * @param int row number that should by highlighted
1202 * false value clears the selection
1203 * @public
1204 */
1205Dygraph.prototype.setSelection = function(row) {
1206 // Extract the points we've selected
1207 this.selPoints_ = [];
1208 var pos = 0;
50360fd0 1209
239c712d 1210 if (row !== false) {
16269f6e
NAG
1211 row = row-this.boundaryIds_[0][0];
1212 }
50360fd0 1213
16269f6e 1214 if (row !== false && row >= 0) {
239c712d 1215 for (var i in this.layout_.datasets) {
16269f6e
NAG
1216 if (row < this.layout_.datasets[i].length) {
1217 this.selPoints_.push(this.layout_.points[pos+row]);
1218 }
239c712d
NAG
1219 pos += this.layout_.datasets[i].length;
1220 }
16269f6e 1221 }
50360fd0 1222
16269f6e 1223 if (this.selPoints_.length) {
239c712d
NAG
1224 this.lastx_ = this.selPoints_[0].xval;
1225 this.updateSelection_();
1226 } else {
1227 this.lastx_ = -1;
1228 this.clearSelection();
1229 }
1230
1231};
1232
1233/**
6a1aa64f
DV
1234 * The mouse has left the canvas. Clear out whatever artifacts remain
1235 * @param {Object} event the mouseout event from the browser.
1236 * @private
1237 */
285a6bda 1238Dygraph.prototype.mouseOut_ = function(event) {
a4c6a67c
AV
1239 if (this.attr_("unhighlightCallback")) {
1240 this.attr_("unhighlightCallback")(event);
1241 }
1242
43af96e7 1243 if (this.attr_("hideOverlayOnMouseOut")) {
239c712d 1244 this.clearSelection();
43af96e7 1245 }
6a1aa64f
DV
1246};
1247
239c712d
NAG
1248/**
1249 * Remove all selection from the canvas
1250 * @public
1251 */
1252Dygraph.prototype.clearSelection = function() {
1253 // Get rid of the overlay data
1254 var ctx = this.canvas_.getContext("2d");
1255 ctx.clearRect(0, 0, this.width_, this.height_);
1256 this.attr_("labelsDiv").innerHTML = "";
1257 this.selPoints_ = [];
1258 this.lastx_ = -1;
1259}
1260
103b7292
NAG
1261/**
1262 * Returns the number of the currently selected row
1263 * @return int row number, of -1 if nothing is selected
1264 * @public
1265 */
1266Dygraph.prototype.getSelection = function() {
1267 if (!this.selPoints_ || this.selPoints_.length < 1) {
1268 return -1;
1269 }
50360fd0 1270
103b7292
NAG
1271 for (var row=0; row<this.layout_.points.length; row++ ) {
1272 if (this.layout_.points[row].x == this.selPoints_[0].x) {
16269f6e 1273 return row + this.boundaryIds_[0][0];
103b7292
NAG
1274 }
1275 }
1276 return -1;
1277}
1278
285a6bda 1279Dygraph.zeropad = function(x) {
32988383
DV
1280 if (x < 10) return "0" + x; else return "" + x;
1281}
1282
6a1aa64f 1283/**
6b8e33dd
DV
1284 * Return a string version of the hours, minutes and seconds portion of a date.
1285 * @param {Number} date The JavaScript date (ms since epoch)
1286 * @return {String} A time of the form "HH:MM:SS"
1287 * @private
1288 */
bf640e56 1289Dygraph.hmsString_ = function(date) {
285a6bda 1290 var zeropad = Dygraph.zeropad;
6b8e33dd
DV
1291 var d = new Date(date);
1292 if (d.getSeconds()) {
1293 return zeropad(d.getHours()) + ":" +
1294 zeropad(d.getMinutes()) + ":" +
1295 zeropad(d.getSeconds());
6b8e33dd 1296 } else {
054531ca 1297 return zeropad(d.getHours()) + ":" + zeropad(d.getMinutes());
6b8e33dd
DV
1298 }
1299}
1300
1301/**
bf640e56
AV
1302 * Convert a JS date to a string appropriate to display on an axis that
1303 * is displaying values at the stated granularity.
1304 * @param {Date} date The date to format
1305 * @param {Number} granularity One of the Dygraph granularity constants
1306 * @return {String} The formatted date
1307 * @private
1308 */
1309Dygraph.dateAxisFormatter = function(date, granularity) {
1310 if (granularity >= Dygraph.MONTHLY) {
1311 return date.strftime('%b %y');
1312 } else {
31eddad3 1313 var frac = date.getHours() * 3600 + date.getMinutes() * 60 + date.getSeconds() + date.getMilliseconds();
bf640e56
AV
1314 if (frac == 0 || granularity >= Dygraph.DAILY) {
1315 return new Date(date.getTime() + 3600*1000).strftime('%d%b');
1316 } else {
1317 return Dygraph.hmsString_(date.getTime());
1318 }
1319 }
1320}
1321
1322/**
6a1aa64f
DV
1323 * Convert a JS date (millis since epoch) to YYYY/MM/DD
1324 * @param {Number} date The JavaScript date (ms since epoch)
1325 * @return {String} A date of the form "YYYY/MM/DD"
1326 * @private
1327 */
285a6bda
DV
1328Dygraph.dateString_ = function(date, self) {
1329 var zeropad = Dygraph.zeropad;
6a1aa64f
DV
1330 var d = new Date(date);
1331
1332 // Get the year:
1333 var year = "" + d.getFullYear();
1334 // Get a 0 padded month string
6b8e33dd 1335 var month = zeropad(d.getMonth() + 1); //months are 0-offset, sigh
6a1aa64f 1336 // Get a 0 padded day string
6b8e33dd 1337 var day = zeropad(d.getDate());
6a1aa64f 1338
6b8e33dd
DV
1339 var ret = "";
1340 var frac = d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
bf640e56 1341 if (frac) ret = " " + Dygraph.hmsString_(date);
6b8e33dd
DV
1342
1343 return year + "/" + month + "/" + day + ret;
6a1aa64f
DV
1344};
1345
1346/**
1347 * Round a number to the specified number of digits past the decimal point.
1348 * @param {Number} num The number to round
1349 * @param {Number} places The number of decimals to which to round
1350 * @return {Number} The rounded number
1351 * @private
1352 */
029da4b6 1353Dygraph.round_ = function(num, places) {
6a1aa64f
DV
1354 var shift = Math.pow(10, places);
1355 return Math.round(num * shift)/shift;
1356};
1357
1358/**
1359 * Fires when there's data available to be graphed.
1360 * @param {String} data Raw CSV data to be plotted
1361 * @private
1362 */
285a6bda 1363Dygraph.prototype.loadedEvent_ = function(data) {
6a1aa64f
DV
1364 this.rawData_ = this.parseCSV_(data);
1365 this.drawGraph_(this.rawData_);
1366};
1367
285a6bda 1368Dygraph.prototype.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
8846615a 1369 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
285a6bda 1370Dygraph.prototype.quarters = ["Jan", "Apr", "Jul", "Oct"];
6a1aa64f
DV
1371
1372/**
1373 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
1374 * @private
1375 */
285a6bda 1376Dygraph.prototype.addXTicks_ = function() {
6a1aa64f
DV
1377 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
1378 var startDate, endDate;
1379 if (this.dateWindow_) {
1380 startDate = this.dateWindow_[0];
1381 endDate = this.dateWindow_[1];
1382 } else {
1383 startDate = this.rawData_[0][0];
1384 endDate = this.rawData_[this.rawData_.length - 1][0];
1385 }
1386
285a6bda 1387 var xTicks = this.attr_('xTicker')(startDate, endDate, this);
6a1aa64f 1388 this.layout_.updateOptions({xTicks: xTicks});
32988383
DV
1389};
1390
1391// Time granularity enumeration
285a6bda 1392Dygraph.SECONDLY = 0;
20a41c17
DV
1393Dygraph.TWO_SECONDLY = 1;
1394Dygraph.FIVE_SECONDLY = 2;
1395Dygraph.TEN_SECONDLY = 3;
1396Dygraph.THIRTY_SECONDLY = 4;
1397Dygraph.MINUTELY = 5;
1398Dygraph.TWO_MINUTELY = 6;
1399Dygraph.FIVE_MINUTELY = 7;
1400Dygraph.TEN_MINUTELY = 8;
1401Dygraph.THIRTY_MINUTELY = 9;
1402Dygraph.HOURLY = 10;
1403Dygraph.TWO_HOURLY = 11;
1404Dygraph.SIX_HOURLY = 12;
1405Dygraph.DAILY = 13;
1406Dygraph.WEEKLY = 14;
1407Dygraph.MONTHLY = 15;
1408Dygraph.QUARTERLY = 16;
1409Dygraph.BIANNUAL = 17;
1410Dygraph.ANNUAL = 18;
1411Dygraph.DECADAL = 19;
1412Dygraph.NUM_GRANULARITIES = 20;
285a6bda
DV
1413
1414Dygraph.SHORT_SPACINGS = [];
1415Dygraph.SHORT_SPACINGS[Dygraph.SECONDLY] = 1000 * 1;
20a41c17
DV
1416Dygraph.SHORT_SPACINGS[Dygraph.TWO_SECONDLY] = 1000 * 2;
1417Dygraph.SHORT_SPACINGS[Dygraph.FIVE_SECONDLY] = 1000 * 5;
285a6bda
DV
1418Dygraph.SHORT_SPACINGS[Dygraph.TEN_SECONDLY] = 1000 * 10;
1419Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_SECONDLY] = 1000 * 30;
1420Dygraph.SHORT_SPACINGS[Dygraph.MINUTELY] = 1000 * 60;
20a41c17
DV
1421Dygraph.SHORT_SPACINGS[Dygraph.TWO_MINUTELY] = 1000 * 60 * 2;
1422Dygraph.SHORT_SPACINGS[Dygraph.FIVE_MINUTELY] = 1000 * 60 * 5;
285a6bda
DV
1423Dygraph.SHORT_SPACINGS[Dygraph.TEN_MINUTELY] = 1000 * 60 * 10;
1424Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_MINUTELY] = 1000 * 60 * 30;
1425Dygraph.SHORT_SPACINGS[Dygraph.HOURLY] = 1000 * 3600;
20a41c17 1426Dygraph.SHORT_SPACINGS[Dygraph.TWO_HOURLY] = 1000 * 3600 * 2;
805d5519 1427Dygraph.SHORT_SPACINGS[Dygraph.SIX_HOURLY] = 1000 * 3600 * 6;
285a6bda
DV
1428Dygraph.SHORT_SPACINGS[Dygraph.DAILY] = 1000 * 86400;
1429Dygraph.SHORT_SPACINGS[Dygraph.WEEKLY] = 1000 * 604800;
32988383
DV
1430
1431// NumXTicks()
1432//
1433// If we used this time granularity, how many ticks would there be?
1434// This is only an approximation, but it's generally good enough.
1435//
285a6bda
DV
1436Dygraph.prototype.NumXTicks = function(start_time, end_time, granularity) {
1437 if (granularity < Dygraph.MONTHLY) {
32988383 1438 // Generate one tick mark for every fixed interval of time.
285a6bda 1439 var spacing = Dygraph.SHORT_SPACINGS[granularity];
32988383
DV
1440 return Math.floor(0.5 + 1.0 * (end_time - start_time) / spacing);
1441 } else {
1442 var year_mod = 1; // e.g. to only print one point every 10 years.
1443 var num_months = 12;
285a6bda
DV
1444 if (granularity == Dygraph.QUARTERLY) num_months = 3;
1445 if (granularity == Dygraph.BIANNUAL) num_months = 2;
1446 if (granularity == Dygraph.ANNUAL) num_months = 1;
1447 if (granularity == Dygraph.DECADAL) { num_months = 1; year_mod = 10; }
32988383
DV
1448
1449 var msInYear = 365.2524 * 24 * 3600 * 1000;
1450 var num_years = 1.0 * (end_time - start_time) / msInYear;
1451 return Math.floor(0.5 + 1.0 * num_years * num_months / year_mod);
1452 }
1453};
1454
1455// GetXAxis()
1456//
1457// Construct an x-axis of nicely-formatted times on meaningful boundaries
1458// (e.g. 'Jan 09' rather than 'Jan 22, 2009').
1459//
1460// Returns an array containing {v: millis, label: label} dictionaries.
1461//
285a6bda 1462Dygraph.prototype.GetXAxis = function(start_time, end_time, granularity) {
bf640e56 1463 var formatter = this.attr_("xAxisLabelFormatter");
32988383 1464 var ticks = [];
285a6bda 1465 if (granularity < Dygraph.MONTHLY) {
32988383 1466 // Generate one tick mark for every fixed interval of time.
285a6bda 1467 var spacing = Dygraph.SHORT_SPACINGS[granularity];
3d29302c 1468 var format = '%d%b'; // e.g. "1Jan"
076c9622
DV
1469
1470 // Find a time less than start_time which occurs on a "nice" time boundary
1471 // for this granularity.
1472 var g = spacing / 1000;
076c9622
DV
1473 var d = new Date(start_time);
1474 if (g <= 60) { // seconds
1475 var x = d.getSeconds(); d.setSeconds(x - x % g);
1476 } else {
1477 d.setSeconds(0);
1478 g /= 60;
1479 if (g <= 60) { // minutes
1480 var x = d.getMinutes(); d.setMinutes(x - x % g);
1481 } else {
1482 d.setMinutes(0);
1483 g /= 60;
1484
1485 if (g <= 24) { // days
1486 var x = d.getHours(); d.setHours(x - x % g);
1487 } else {
1488 d.setHours(0);
1489 g /= 24;
1490
1491 if (g == 7) { // one week
20a41c17 1492 d.setDate(d.getDate() - d.getDay());
076c9622
DV
1493 }
1494 }
1495 }
328bb812 1496 }
076c9622
DV
1497 start_time = d.getTime();
1498
32988383 1499 for (var t = start_time; t <= end_time; t += spacing) {
bf640e56 1500 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
1501 }
1502 } else {
1503 // Display a tick mark on the first of a set of months of each year.
1504 // Years get a tick mark iff y % year_mod == 0. This is useful for
1505 // displaying a tick mark once every 10 years, say, on long time scales.
1506 var months;
1507 var year_mod = 1; // e.g. to only print one point every 10 years.
1508
285a6bda 1509 if (granularity == Dygraph.MONTHLY) {
32988383 1510 months = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
285a6bda 1511 } else if (granularity == Dygraph.QUARTERLY) {
32988383 1512 months = [ 0, 3, 6, 9 ];
285a6bda 1513 } else if (granularity == Dygraph.BIANNUAL) {
32988383 1514 months = [ 0, 6 ];
285a6bda 1515 } else if (granularity == Dygraph.ANNUAL) {
32988383 1516 months = [ 0 ];
285a6bda 1517 } else if (granularity == Dygraph.DECADAL) {
32988383
DV
1518 months = [ 0 ];
1519 year_mod = 10;
1520 }
1521
1522 var start_year = new Date(start_time).getFullYear();
1523 var end_year = new Date(end_time).getFullYear();
285a6bda 1524 var zeropad = Dygraph.zeropad;
32988383
DV
1525 for (var i = start_year; i <= end_year; i++) {
1526 if (i % year_mod != 0) continue;
1527 for (var j = 0; j < months.length; j++) {
1528 var date_str = i + "/" + zeropad(1 + months[j]) + "/01";
1529 var t = Date.parse(date_str);
1530 if (t < start_time || t > end_time) continue;
bf640e56 1531 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
1532 }
1533 }
1534 }
1535
1536 return ticks;
1537};
1538
6a1aa64f
DV
1539
1540/**
1541 * Add ticks to the x-axis based on a date range.
1542 * @param {Number} startDate Start of the date window (millis since epoch)
1543 * @param {Number} endDate End of the date window (millis since epoch)
1544 * @return {Array.<Object>} Array of {label, value} tuples.
1545 * @public
1546 */
285a6bda 1547Dygraph.dateTicker = function(startDate, endDate, self) {
32988383 1548 var chosen = -1;
285a6bda
DV
1549 for (var i = 0; i < Dygraph.NUM_GRANULARITIES; i++) {
1550 var num_ticks = self.NumXTicks(startDate, endDate, i);
1551 if (self.width_ / num_ticks >= self.attr_('pixelsPerXLabel')) {
32988383
DV
1552 chosen = i;
1553 break;
2769de62 1554 }
6a1aa64f
DV
1555 }
1556
32988383 1557 if (chosen >= 0) {
285a6bda 1558 return self.GetXAxis(startDate, endDate, chosen);
6a1aa64f 1559 } else {
32988383 1560 // TODO(danvk): signal error.
6a1aa64f 1561 }
6a1aa64f
DV
1562};
1563
1564/**
1565 * Add ticks when the x axis has numbers on it (instead of dates)
1566 * @param {Number} startDate Start of the date window (millis since epoch)
1567 * @param {Number} endDate End of the date window (millis since epoch)
1568 * @return {Array.<Object>} Array of {label, value} tuples.
1569 * @public
1570 */
285a6bda 1571Dygraph.numericTicks = function(minV, maxV, self) {
c6336f04
DV
1572 // Basic idea:
1573 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
1574 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks).
285a6bda 1575 // The first spacing greater than pixelsPerYLabel is what we use.
ff00d3e2 1576 // TODO(danvk): version that works on a log scale.
f09e46d4
DV
1577 if (self.attr_("labelsKMG2")) {
1578 var mults = [1, 2, 4, 8];
1579 } else {
1580 var mults = [1, 2, 5];
1581 }
c6336f04 1582 var scale, low_val, high_val, nTicks;
285a6bda
DV
1583 // TODO(danvk): make it possible to set this for x- and y-axes independently.
1584 var pixelsPerTick = self.attr_('pixelsPerYLabel');
c6336f04 1585 for (var i = -10; i < 50; i++) {
f09e46d4
DV
1586 if (self.attr_("labelsKMG2")) {
1587 var base_scale = Math.pow(16, i);
1588 } else {
1589 var base_scale = Math.pow(10, i);
1590 }
c6336f04
DV
1591 for (var j = 0; j < mults.length; j++) {
1592 scale = base_scale * mults[j];
c6336f04
DV
1593 low_val = Math.floor(minV / scale) * scale;
1594 high_val = Math.ceil(maxV / scale) * scale;
48a0ac91 1595 nTicks = Math.abs(high_val - low_val) / scale;
285a6bda 1596 var spacing = self.height_ / nTicks;
c6336f04 1597 // wish I could break out of both loops at once...
285a6bda 1598 if (spacing > pixelsPerTick) break;
c6336f04 1599 }
285a6bda 1600 if (spacing > pixelsPerTick) break;
6a1aa64f
DV
1601 }
1602
1603 // Construct labels for the ticks
1604 var ticks = [];
ed11be50
DV
1605 var k;
1606 var k_labels = [];
1607 if (self.attr_("labelsKMB")) {
1608 k = 1000;
1609 k_labels = [ "K", "M", "B", "T" ];
1610 }
1611 if (self.attr_("labelsKMG2")) {
1612 if (k) self.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
1613 k = 1024;
1614 k_labels = [ "k", "M", "G", "T" ];
1615 }
1616
e21e69e2 1617 // Allow reverse y-axis if it's explicitly requested.
be7cdb11 1618 if (low_val > high_val) scale *= -1;
48a0ac91 1619
c6336f04
DV
1620 for (var i = 0; i < nTicks; i++) {
1621 var tickV = low_val + i * scale;
0af6e346 1622 var absTickV = Math.abs(tickV);
029da4b6 1623 var label = Dygraph.round_(tickV, 2);
ed11be50
DV
1624 if (k_labels.length) {
1625 // Round up to an appropriate unit.
1626 var n = k*k*k*k;
1627 for (var j = 3; j >= 0; j--, n /= k) {
1628 if (absTickV >= n) {
029da4b6 1629 label = Dygraph.round_(tickV / n, 1) + k_labels[j];
ed11be50
DV
1630 break;
1631 }
afefbcdb 1632 }
6a1aa64f
DV
1633 }
1634 ticks.push( {label: label, v: tickV} );
1635 }
1636 return ticks;
1637};
1638
1639/**
1640 * Adds appropriate ticks on the y-axis
1641 * @param {Number} minY The minimum Y value in the data set
1642 * @param {Number} maxY The maximum Y value in the data set
1643 * @private
1644 */
285a6bda 1645Dygraph.prototype.addYTicks_ = function(minY, maxY) {
6a1aa64f 1646 // Set the number of ticks so that the labels are human-friendly.
285a6bda
DV
1647 // TODO(danvk): make this an attribute as well.
1648 var ticks = Dygraph.numericTicks(minY, maxY, this);
6a1aa64f
DV
1649 this.layout_.updateOptions( { yAxis: [minY, maxY],
1650 yTicks: ticks } );
1651};
1652
5011e7a1
DV
1653// Computes the range of the data series (including confidence intervals).
1654// series is either [ [x1, y1], [x2, y2], ... ] or
1655// [ [x1, [y1, dev_low, dev_high]], [x2, [y2, dev_low, dev_high]], ...
1656// Returns [low, high]
1657Dygraph.prototype.extremeValues_ = function(series) {
1658 var minY = null, maxY = null;
1659
9922b78b 1660 var bars = this.attr_("errorBars") || this.attr_("customBars");
5011e7a1
DV
1661 if (bars) {
1662 // With custom bars, maxY is the max of the high values.
1663 for (var j = 0; j < series.length; j++) {
1664 var y = series[j][1][0];
1665 if (!y) continue;
1666 var low = y - series[j][1][1];
1667 var high = y + series[j][1][2];
1668 if (low > y) low = y; // this can happen with custom bars,
1669 if (high < y) high = y; // e.g. in tests/custom-bars.html
1670 if (maxY == null || high > maxY) {
1671 maxY = high;
1672 }
1673 if (minY == null || low < minY) {
1674 minY = low;
1675 }
1676 }
1677 } else {
1678 for (var j = 0; j < series.length; j++) {
1679 var y = series[j][1];
d12999d3 1680 if (y === null || isNaN(y)) continue;
5011e7a1
DV
1681 if (maxY == null || y > maxY) {
1682 maxY = y;
1683 }
1684 if (minY == null || y < minY) {
1685 minY = y;
1686 }
1687 }
1688 }
1689
1690 return [minY, maxY];
1691};
1692
6a1aa64f
DV
1693/**
1694 * Update the graph with new data. Data is in the format
1695 * [ [date1, val1, val2, ...], [date2, val1, val2, ...] if errorBars=false
1696 * or, if errorBars=true,
1697 * [ [date1, [val1,stddev1], [val2,stddev2], ...], [date2, ...], ...]
1698 * @param {Array.<Object>} data The data (see above)
1699 * @private
1700 */
285a6bda 1701Dygraph.prototype.drawGraph_ = function(data) {
fe0b7c03
DV
1702 // This is used to set the second parameter to drawCallback, below.
1703 var is_initial_draw = this.is_initial_draw_;
1704 this.is_initial_draw_ = false;
1705
3bd9c228 1706 var minY = null, maxY = null;
6a1aa64f 1707 this.layout_.removeAllDatasets();
285a6bda 1708 this.setColors_();
9317362d 1709 this.attrs_['pointSize'] = 0.5 * this.attr_('highlightCircleSize');
285a6bda 1710
f032c51d
AV
1711 var connectSeparatedPoints = this.attr_('connectSeparatedPoints');
1712
354e15ab
DE
1713 // Loop over the fields (series). Go from the last to the first,
1714 // because if they're stacked that's how we accumulate the values.
43af96e7 1715
354e15ab
DE
1716 var cumulative_y = []; // For stacked series.
1717 var datasets = [];
1718
1719 // Loop over all fields and create datasets
1720 for (var i = data[0].length - 1; i >= 1; i--) {
1cf11047
DV
1721 if (!this.visibility()[i - 1]) continue;
1722
6a1aa64f
DV
1723 var series = [];
1724 for (var j = 0; j < data.length; j++) {
4a634fc7 1725 if (data[j][i] != null || !connectSeparatedPoints) {
f032c51d 1726 var date = data[j][0];
563c70ca 1727 series.push([date, data[j][i]]);
f032c51d 1728 }
6a1aa64f
DV
1729 }
1730 series = this.rollingAverage(series, this.rollPeriod_);
1731
1732 // Prune down to the desired range, if necessary (for zooming)
1a26f3fb
DV
1733 // Because there can be lines going to points outside of the visible area,
1734 // we actually prune to visible points, plus one on either side.
9922b78b 1735 var bars = this.attr_("errorBars") || this.attr_("customBars");
6a1aa64f
DV
1736 if (this.dateWindow_) {
1737 var low = this.dateWindow_[0];
1738 var high= this.dateWindow_[1];
1739 var pruned = [];
1a26f3fb
DV
1740 // TODO(danvk): do binary search instead of linear search.
1741 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
1742 var firstIdx = null, lastIdx = null;
6a1aa64f 1743 for (var k = 0; k < series.length; k++) {
1a26f3fb
DV
1744 if (series[k][0] >= low && firstIdx === null) {
1745 firstIdx = k;
1746 }
1747 if (series[k][0] <= high) {
1748 lastIdx = k;
6a1aa64f
DV
1749 }
1750 }
1a26f3fb
DV
1751 if (firstIdx === null) firstIdx = 0;
1752 if (firstIdx > 0) firstIdx--;
1753 if (lastIdx === null) lastIdx = series.length - 1;
1754 if (lastIdx < series.length - 1) lastIdx++;
16269f6e 1755 this.boundaryIds_[i-1] = [firstIdx, lastIdx];
1a26f3fb
DV
1756 for (var k = firstIdx; k <= lastIdx; k++) {
1757 pruned.push(series[k]);
6a1aa64f
DV
1758 }
1759 series = pruned;
16269f6e
NAG
1760 } else {
1761 this.boundaryIds_[i-1] = [0, series.length-1];
6a1aa64f
DV
1762 }
1763
648acd28
DV
1764 var extremes = this.extremeValues_(series);
1765 var thisMinY = extremes[0];
1766 var thisMaxY = extremes[1];
61b78cd6
DV
1767 if (minY === null || thisMinY < minY) minY = thisMinY;
1768 if (maxY === null || thisMaxY > maxY) maxY = thisMaxY;
5011e7a1 1769
6a1aa64f 1770 if (bars) {
354e15ab
DE
1771 for (var j=0; j<series.length; j++) {
1772 val = [series[j][0], series[j][1][0], series[j][1][1], series[j][1][2]];
1773 series[j] = val;
1774 }
43af96e7 1775 } else if (this.attr_("stackedGraph")) {
43af96e7
NK
1776 var l = series.length;
1777 var actual_y;
1778 for (var j = 0; j < l; j++) {
354e15ab
DE
1779 // If one data set has a NaN, let all subsequent stacked
1780 // sets inherit the NaN -- only start at 0 for the first set.
1781 var x = series[j][0];
1782 if (cumulative_y[x] === undefined)
1783 cumulative_y[x] = 0;
43af96e7
NK
1784
1785 actual_y = series[j][1];
354e15ab 1786 cumulative_y[x] += actual_y;
43af96e7 1787
354e15ab 1788 series[j] = [x, cumulative_y[x]]
43af96e7 1789
354e15ab
DE
1790 if (!maxY || cumulative_y[x] > maxY)
1791 maxY = cumulative_y[x];
43af96e7 1792 }
6a1aa64f 1793 }
354e15ab
DE
1794
1795 datasets[i] = series;
6a1aa64f
DV
1796 }
1797
354e15ab 1798 for (var i = 1; i < datasets.length; i++) {
4523c1f6 1799 if (!this.visibility()[i - 1]) continue;
354e15ab 1800 this.layout_.addDataset(this.attr_("labels")[i], datasets[i]);
43af96e7
NK
1801 }
1802
6a1aa64f 1803 // Use some heuristics to come up with a good maxY value, unless it's been
8b83c6cc
RK
1804 // set explicitly by the developer or end-user (via drag)
1805 if (this.valueWindow_ != null) {
1806 this.addYTicks_(this.valueWindow_[0], this.valueWindow_[1]);
1807 this.displayedYRange_ = this.valueWindow_;
6a1aa64f 1808 } else {
d053ab5a
DV
1809 // This affects the calculation of span, below.
1810 if (this.attr_("includeZero") && minY > 0) {
1811 minY = 0;
1812 }
1813
6a1aa64f 1814 // Add some padding and round up to an integer to be human-friendly.
3bd9c228 1815 var span = maxY - minY;
93dfacfd
DV
1816 // special case: if we have no sense of scale, use +/-10% of the sole value.
1817 if (span == 0) { span = maxY; }
3bd9c228
DV
1818 var maxAxisY = maxY + 0.1 * span;
1819 var minAxisY = minY - 0.1 * span;
1820
1821 // Try to include zero and make it minAxisY (or maxAxisY) if it makes sense.
ceb009dd
DV
1822 if (minAxisY < 0 && minY >= 0) minAxisY = 0;
1823 if (maxAxisY > 0 && maxY <= 0) maxAxisY = 0;
3bd9c228
DV
1824
1825 if (this.attr_("includeZero")) {
1826 if (maxY < 0) maxAxisY = 0;
1827 if (minY > 0) minAxisY = 0;
1828 }
1829
1830 this.addYTicks_(minAxisY, maxAxisY);
3230c662 1831 this.displayedYRange_ = [minAxisY, maxAxisY];
6a1aa64f
DV
1832 }
1833
1834 this.addXTicks_();
1835
1836 // Tell PlotKit to use this new data and render itself
d033ae1c 1837 this.layout_.updateOptions({dateWindow: this.dateWindow_});
6a1aa64f
DV
1838 this.layout_.evaluateWithError();
1839 this.plotter_.clear();
1840 this.plotter_.render();
f6401bf6
DV
1841 this.canvas_.getContext('2d').clearRect(0, 0, this.canvas_.width,
1842 this.canvas_.height);
599fb4ad
DV
1843
1844 if (this.attr_("drawCallback") !== null) {
fe0b7c03 1845 this.attr_("drawCallback")(this, is_initial_draw);
599fb4ad 1846 }
6a1aa64f
DV
1847};
1848
1849/**
1850 * Calculates the rolling average of a data set.
1851 * If originalData is [label, val], rolls the average of those.
1852 * If originalData is [label, [, it's interpreted as [value, stddev]
1853 * and the roll is returned in the same form, with appropriately reduced
1854 * stddev for each value.
1855 * Note that this is where fractional input (i.e. '5/10') is converted into
1856 * decimal values.
1857 * @param {Array} originalData The data in the appropriate format (see above)
1858 * @param {Number} rollPeriod The number of days over which to average the data
1859 */
285a6bda 1860Dygraph.prototype.rollingAverage = function(originalData, rollPeriod) {
6a1aa64f
DV
1861 if (originalData.length < 2)
1862 return originalData;
1863 var rollPeriod = Math.min(rollPeriod, originalData.length - 1);
1864 var rollingData = [];
285a6bda 1865 var sigma = this.attr_("sigma");
6a1aa64f
DV
1866
1867 if (this.fractions_) {
1868 var num = 0;
1869 var den = 0; // numerator/denominator
1870 var mult = 100.0;
1871 for (var i = 0; i < originalData.length; i++) {
1872 num += originalData[i][1][0];
1873 den += originalData[i][1][1];
1874 if (i - rollPeriod >= 0) {
1875 num -= originalData[i - rollPeriod][1][0];
1876 den -= originalData[i - rollPeriod][1][1];
1877 }
1878
1879 var date = originalData[i][0];
1880 var value = den ? num / den : 0.0;
285a6bda 1881 if (this.attr_("errorBars")) {
6a1aa64f
DV
1882 if (this.wilsonInterval_) {
1883 // For more details on this confidence interval, see:
1884 // http://en.wikipedia.org/wiki/Binomial_confidence_interval
1885 if (den) {
1886 var p = value < 0 ? 0 : value, n = den;
1887 var pm = sigma * Math.sqrt(p*(1-p)/n + sigma*sigma/(4*n*n));
1888 var denom = 1 + sigma * sigma / den;
1889 var low = (p + sigma * sigma / (2 * den) - pm) / denom;
1890 var high = (p + sigma * sigma / (2 * den) + pm) / denom;
1891 rollingData[i] = [date,
1892 [p * mult, (p - low) * mult, (high - p) * mult]];
1893 } else {
1894 rollingData[i] = [date, [0, 0, 0]];
1895 }
1896 } else {
1897 var stddev = den ? sigma * Math.sqrt(value * (1 - value) / den) : 1.0;
1898 rollingData[i] = [date, [mult * value, mult * stddev, mult * stddev]];
1899 }
1900 } else {
1901 rollingData[i] = [date, mult * value];
1902 }
1903 }
9922b78b 1904 } else if (this.attr_("customBars")) {
f6885d6a
DV
1905 var low = 0;
1906 var mid = 0;
1907 var high = 0;
1908 var count = 0;
6a1aa64f
DV
1909 for (var i = 0; i < originalData.length; i++) {
1910 var data = originalData[i][1];
1911 var y = data[1];
1912 rollingData[i] = [originalData[i][0], [y, y - data[0], data[2] - y]];
f6885d6a 1913
8b91c51f 1914 if (y != null && !isNaN(y)) {
49a7d0d5
DV
1915 low += data[0];
1916 mid += y;
1917 high += data[2];
1918 count += 1;
1919 }
f6885d6a
DV
1920 if (i - rollPeriod >= 0) {
1921 var prev = originalData[i - rollPeriod];
8b91c51f 1922 if (prev[1][1] != null && !isNaN(prev[1][1])) {
49a7d0d5
DV
1923 low -= prev[1][0];
1924 mid -= prev[1][1];
1925 high -= prev[1][2];
1926 count -= 1;
1927 }
f6885d6a
DV
1928 }
1929 rollingData[i] = [originalData[i][0], [ 1.0 * mid / count,
1930 1.0 * (mid - low) / count,
1931 1.0 * (high - mid) / count ]];
2769de62 1932 }
6a1aa64f
DV
1933 } else {
1934 // Calculate the rolling average for the first rollPeriod - 1 points where
1935 // there is not enough data to roll over the full number of days
1936 var num_init_points = Math.min(rollPeriod - 1, originalData.length - 2);
285a6bda 1937 if (!this.attr_("errorBars")){
5011e7a1
DV
1938 if (rollPeriod == 1) {
1939 return originalData;
1940 }
1941
2847c1cf 1942 for (var i = 0; i < originalData.length; i++) {
6a1aa64f 1943 var sum = 0;
5011e7a1 1944 var num_ok = 0;
2847c1cf
DV
1945 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
1946 var y = originalData[j][1];
8b91c51f 1947 if (y == null || isNaN(y)) continue;
5011e7a1 1948 num_ok++;
2847c1cf 1949 sum += originalData[j][1];
6a1aa64f 1950 }
5011e7a1 1951 if (num_ok) {
2847c1cf 1952 rollingData[i] = [originalData[i][0], sum / num_ok];
5011e7a1 1953 } else {
2847c1cf 1954 rollingData[i] = [originalData[i][0], null];
5011e7a1 1955 }
6a1aa64f 1956 }
2847c1cf
DV
1957
1958 } else {
1959 for (var i = 0; i < originalData.length; i++) {
6a1aa64f
DV
1960 var sum = 0;
1961 var variance = 0;
5011e7a1 1962 var num_ok = 0;
2847c1cf 1963 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
5011e7a1 1964 var y = originalData[j][1][0];
8b91c51f 1965 if (y == null || isNaN(y)) continue;
5011e7a1 1966 num_ok++;
6a1aa64f
DV
1967 sum += originalData[j][1][0];
1968 variance += Math.pow(originalData[j][1][1], 2);
1969 }
5011e7a1
DV
1970 if (num_ok) {
1971 var stddev = Math.sqrt(variance) / num_ok;
1972 rollingData[i] = [originalData[i][0],
1973 [sum / num_ok, sigma * stddev, sigma * stddev]];
1974 } else {
1975 rollingData[i] = [originalData[i][0], [null, null, null]];
1976 }
6a1aa64f
DV
1977 }
1978 }
1979 }
1980
1981 return rollingData;
1982};
1983
1984/**
1985 * Parses a date, returning the number of milliseconds since epoch. This can be
285a6bda
DV
1986 * passed in as an xValueParser in the Dygraph constructor.
1987 * TODO(danvk): enumerate formats that this understands.
6a1aa64f
DV
1988 * @param {String} A date in YYYYMMDD format.
1989 * @return {Number} Milliseconds since epoch.
1990 * @public
1991 */
285a6bda 1992Dygraph.dateParser = function(dateStr, self) {
6a1aa64f 1993 var dateStrSlashed;
285a6bda 1994 var d;
986a5026 1995 if (dateStr.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
6a1aa64f 1996 dateStrSlashed = dateStr.replace("-", "/", "g");
353a0294
DV
1997 while (dateStrSlashed.search("-") != -1) {
1998 dateStrSlashed = dateStrSlashed.replace("-", "/");
1999 }
285a6bda 2000 d = Date.parse(dateStrSlashed);
2769de62 2001 } else if (dateStr.length == 8) { // e.g. '20090712'
285a6bda 2002 // TODO(danvk): remove support for this format. It's confusing.
6a1aa64f
DV
2003 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2)
2004 + "/" + dateStr.substr(6,2);
285a6bda 2005 d = Date.parse(dateStrSlashed);
2769de62
DV
2006 } else {
2007 // Any format that Date.parse will accept, e.g. "2009/07/12" or
2008 // "2009/07/12 12:34:56"
285a6bda
DV
2009 d = Date.parse(dateStr);
2010 }
2011
2012 if (!d || isNaN(d)) {
2013 self.error("Couldn't parse " + dateStr + " as a date");
2014 }
2015 return d;
2016};
2017
2018/**
2019 * Detects the type of the str (date or numeric) and sets the various
2020 * formatting attributes in this.attrs_ based on this type.
2021 * @param {String} str An x value.
2022 * @private
2023 */
2024Dygraph.prototype.detectTypeFromString_ = function(str) {
2025 var isDate = false;
2026 if (str.indexOf('-') >= 0 ||
2027 str.indexOf('/') >= 0 ||
2028 isNaN(parseFloat(str))) {
2029 isDate = true;
2030 } else if (str.length == 8 && str > '19700101' && str < '20371231') {
2031 // TODO(danvk): remove support for this format.
2032 isDate = true;
2033 }
2034
2035 if (isDate) {
2036 this.attrs_.xValueFormatter = Dygraph.dateString_;
2037 this.attrs_.xValueParser = Dygraph.dateParser;
2038 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 2039 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda
DV
2040 } else {
2041 this.attrs_.xValueFormatter = function(x) { return x; };
2042 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
2043 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 2044 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
6a1aa64f 2045 }
6a1aa64f
DV
2046};
2047
2048/**
2049 * Parses a string in a special csv format. We expect a csv file where each
2050 * line is a date point, and the first field in each line is the date string.
2051 * We also expect that all remaining fields represent series.
285a6bda 2052 * if the errorBars attribute is set, then interpret the fields as:
6a1aa64f
DV
2053 * date, series1, stddev1, series2, stddev2, ...
2054 * @param {Array.<Object>} data See above.
2055 * @private
285a6bda
DV
2056 *
2057 * @return Array.<Object> An array with one entry for each row. These entries
2058 * are an array of cells in that row. The first entry is the parsed x-value for
2059 * the row. The second, third, etc. are the y-values. These can take on one of
2060 * three forms, depending on the CSV and constructor parameters:
2061 * 1. numeric value
2062 * 2. [ value, stddev ]
2063 * 3. [ low value, center value, high value ]
6a1aa64f 2064 */
285a6bda 2065Dygraph.prototype.parseCSV_ = function(data) {
6a1aa64f
DV
2066 var ret = [];
2067 var lines = data.split("\n");
3d67f03b
DV
2068
2069 // Use the default delimiter or fall back to a tab if that makes sense.
2070 var delim = this.attr_('delimiter');
2071 if (lines[0].indexOf(delim) == -1 && lines[0].indexOf('\t') >= 0) {
2072 delim = '\t';
2073 }
2074
285a6bda 2075 var start = 0;
6a1aa64f 2076 if (this.labelsFromCSV_) {
285a6bda 2077 start = 1;
3d67f03b 2078 this.attrs_.labels = lines[0].split(delim);
6a1aa64f
DV
2079 }
2080
03b522a4
DV
2081 // Parse the x as a float or return null if it's not a number.
2082 var parseFloatOrNull = function(x) {
41333ec0
DV
2083 var val = parseFloat(x);
2084 return isNaN(val) ? null : val;
03b522a4
DV
2085 };
2086
285a6bda
DV
2087 var xParser;
2088 var defaultParserSet = false; // attempt to auto-detect x value type
2089 var expectedCols = this.attr_("labels").length;
987840a2 2090 var outOfOrder = false;
6a1aa64f
DV
2091 for (var i = start; i < lines.length; i++) {
2092 var line = lines[i];
2093 if (line.length == 0) continue; // skip blank lines
3d67f03b
DV
2094 if (line[0] == '#') continue; // skip comment lines
2095 var inFields = line.split(delim);
285a6bda 2096 if (inFields.length < 2) continue;
6a1aa64f
DV
2097
2098 var fields = [];
285a6bda
DV
2099 if (!defaultParserSet) {
2100 this.detectTypeFromString_(inFields[0]);
2101 xParser = this.attr_("xValueParser");
2102 defaultParserSet = true;
2103 }
2104 fields[0] = xParser(inFields[0], this);
6a1aa64f
DV
2105
2106 // If fractions are expected, parse the numbers as "A/B"
2107 if (this.fractions_) {
2108 for (var j = 1; j < inFields.length; j++) {
2109 // TODO(danvk): figure out an appropriate way to flag parse errors.
2110 var vals = inFields[j].split("/");
03b522a4 2111 fields[j] = [parseFloatOrNull(vals[0]), parseFloatOrNull(vals[1])];
6a1aa64f 2112 }
285a6bda 2113 } else if (this.attr_("errorBars")) {
6a1aa64f
DV
2114 // If there are error bars, values are (value, stddev) pairs
2115 for (var j = 1; j < inFields.length; j += 2)
03b522a4
DV
2116 fields[(j + 1) / 2] = [parseFloatOrNull(inFields[j]),
2117 parseFloatOrNull(inFields[j + 1])];
9922b78b 2118 } else if (this.attr_("customBars")) {
6a1aa64f
DV
2119 // Bars are a low;center;high tuple
2120 for (var j = 1; j < inFields.length; j++) {
2121 var vals = inFields[j].split(";");
03b522a4
DV
2122 fields[j] = [ parseFloatOrNull(vals[0]),
2123 parseFloatOrNull(vals[1]),
2124 parseFloatOrNull(vals[2]) ];
6a1aa64f
DV
2125 }
2126 } else {
2127 // Values are just numbers
285a6bda 2128 for (var j = 1; j < inFields.length; j++) {
03b522a4 2129 fields[j] = parseFloatOrNull(inFields[j]);
285a6bda 2130 }
6a1aa64f 2131 }
987840a2
DV
2132 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
2133 outOfOrder = true;
2134 }
6a1aa64f 2135 ret.push(fields);
285a6bda
DV
2136
2137 if (fields.length != expectedCols) {
2138 this.error("Number of columns in line " + i + " (" + fields.length +
2139 ") does not agree with number of labels (" + expectedCols +
2140 ") " + line);
2141 }
6a1aa64f 2142 }
987840a2
DV
2143
2144 if (outOfOrder) {
2145 this.warn("CSV is out of order; order it correctly to speed loading.");
2146 ret.sort(function(a,b) { return a[0] - b[0] });
2147 }
2148
6a1aa64f
DV
2149 return ret;
2150};
2151
2152/**
285a6bda
DV
2153 * The user has provided their data as a pre-packaged JS array. If the x values
2154 * are numeric, this is the same as dygraphs' internal format. If the x values
2155 * are dates, we need to convert them from Date objects to ms since epoch.
2156 * @param {Array.<Object>} data
2157 * @return {Array.<Object>} data with numeric x values.
2158 */
2159Dygraph.prototype.parseArray_ = function(data) {
2160 // Peek at the first x value to see if it's numeric.
2161 if (data.length == 0) {
2162 this.error("Can't plot empty data set");
2163 return null;
2164 }
2165 if (data[0].length == 0) {
2166 this.error("Data set cannot contain an empty row");
2167 return null;
2168 }
2169
2170 if (this.attr_("labels") == null) {
2171 this.warn("Using default labels. Set labels explicitly via 'labels' " +
2172 "in the options parameter");
2173 this.attrs_.labels = [ "X" ];
2174 for (var i = 1; i < data[0].length; i++) {
2175 this.attrs_.labels.push("Y" + i);
2176 }
2177 }
2178
2dda3850 2179 if (Dygraph.isDateLike(data[0][0])) {
285a6bda
DV
2180 // Some intelligent defaults for a date x-axis.
2181 this.attrs_.xValueFormatter = Dygraph.dateString_;
bf640e56 2182 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda
DV
2183 this.attrs_.xTicker = Dygraph.dateTicker;
2184
2185 // Assume they're all dates.
e3ab7b40 2186 var parsedData = Dygraph.clone(data);
285a6bda
DV
2187 for (var i = 0; i < data.length; i++) {
2188 if (parsedData[i].length == 0) {
a323ff4a 2189 this.error("Row " + (1 + i) + " of data is empty");
285a6bda
DV
2190 return null;
2191 }
2192 if (parsedData[i][0] == null
3a909ec5
DV
2193 || typeof(parsedData[i][0].getTime) != 'function'
2194 || isNaN(parsedData[i][0].getTime())) {
be96a1f5 2195 this.error("x value in row " + (1 + i) + " is not a Date");
285a6bda
DV
2196 return null;
2197 }
2198 parsedData[i][0] = parsedData[i][0].getTime();
2199 }
2200 return parsedData;
2201 } else {
2202 // Some intelligent defaults for a numeric x-axis.
2203 this.attrs_.xValueFormatter = function(x) { return x; };
2204 this.attrs_.xTicker = Dygraph.numericTicks;
2205 return data;
2206 }
2207};
2208
2209/**
79420a1e
DV
2210 * Parses a DataTable object from gviz.
2211 * The data is expected to have a first column that is either a date or a
2212 * number. All subsequent columns must be numbers. If there is a clear mismatch
2213 * between this.xValueParser_ and the type of the first column, it will be
a685723c 2214 * fixed. Fills out rawData_.
79420a1e
DV
2215 * @param {Array.<Object>} data See above.
2216 * @private
2217 */
285a6bda 2218Dygraph.prototype.parseDataTable_ = function(data) {
79420a1e
DV
2219 var cols = data.getNumberOfColumns();
2220 var rows = data.getNumberOfRows();
2221
d955e223 2222 var indepType = data.getColumnType(0);
4440f6c8 2223 if (indepType == 'date' || indepType == 'datetime') {
285a6bda
DV
2224 this.attrs_.xValueFormatter = Dygraph.dateString_;
2225 this.attrs_.xValueParser = Dygraph.dateParser;
2226 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 2227 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
33127159 2228 } else if (indepType == 'number') {
285a6bda
DV
2229 this.attrs_.xValueFormatter = function(x) { return x; };
2230 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
2231 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 2232 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
285a6bda 2233 } else {
987840a2
DV
2234 this.error("only 'date', 'datetime' and 'number' types are supported for " +
2235 "column 1 of DataTable input (Got '" + indepType + "')");
79420a1e
DV
2236 return null;
2237 }
2238
a685723c
DV
2239 // Array of the column indices which contain data (and not annotations).
2240 var colIdx = [];
2241 var annotationCols = {}; // data index -> [annotation cols]
2242 var hasAnnotations = false;
2243 for (var i = 1; i < cols; i++) {
2244 var type = data.getColumnType(i);
2245 if (type == 'number') {
2246 colIdx.push(i);
2247 } else if (type == 'string' && this.attr_('displayAnnotations')) {
2248 // This is OK -- it's an annotation column.
2249 var dataIdx = colIdx[colIdx.length - 1];
2250 if (!annotationCols.hasOwnProperty(dataIdx)) {
2251 annotationCols[dataIdx] = [i];
2252 } else {
2253 annotationCols[dataIdx].push(i);
2254 }
2255 hasAnnotations = true;
2256 } else {
2257 this.error("Only 'number' is supported as a dependent type with Gviz." +
2258 " 'string' is only supported if displayAnnotations is true");
2259 }
2260 }
2261
2262 // Read column labels
2263 // TODO(danvk): add support back for errorBars
2264 var labels = [data.getColumnLabel(0)];
2265 for (var i = 0; i < colIdx.length; i++) {
2266 labels.push(data.getColumnLabel(colIdx[i]));
2267 }
2268 this.attrs_.labels = labels;
2269 cols = labels.length;
2270
79420a1e 2271 var ret = [];
987840a2 2272 var outOfOrder = false;
a685723c 2273 var annotations = [];
79420a1e
DV
2274 for (var i = 0; i < rows; i++) {
2275 var row = [];
debe4434
DV
2276 if (typeof(data.getValue(i, 0)) === 'undefined' ||
2277 data.getValue(i, 0) === null) {
2278 this.warning("Ignoring row " + i +
2279 " of DataTable because of undefined or null first column.");
2280 continue;
2281 }
2282
c21d2c2d 2283 if (indepType == 'date' || indepType == 'datetime') {
d955e223
DV
2284 row.push(data.getValue(i, 0).getTime());
2285 } else {
2286 row.push(data.getValue(i, 0));
2287 }
3e3f84e4 2288 if (!this.attr_("errorBars")) {
a685723c
DV
2289 for (var j = 0; j < colIdx.length; j++) {
2290 var col = colIdx[j];
2291 row.push(data.getValue(i, col));
2292 if (hasAnnotations &&
2293 annotationCols.hasOwnProperty(col) &&
2294 data.getValue(i, annotationCols[col][0]) != null) {
2295 var ann = {};
2296 ann.series = data.getColumnLabel(col);
2297 ann.xval = row[0];
2298 ann.shortText = String.fromCharCode(65 /* A */ + annotations.length)
2299 ann.text = '';
2300 for (var k = 0; k < annotationCols[col].length; k++) {
2301 if (k) ann.text += "\n";
2302 ann.text += data.getValue(i, annotationCols[col][k]);
2303 }
2304 annotations.push(ann);
2305 }
3e3f84e4
DV
2306 }
2307 } else {
2308 for (var j = 0; j < cols - 1; j++) {
2309 row.push([ data.getValue(i, 1 + 2 * j), data.getValue(i, 2 + 2 * j) ]);
2310 }
79420a1e 2311 }
987840a2
DV
2312 if (ret.length > 0 && row[0] < ret[ret.length - 1][0]) {
2313 outOfOrder = true;
2314 }
243d96e8 2315 ret.push(row);
79420a1e 2316 }
987840a2
DV
2317
2318 if (outOfOrder) {
2319 this.warn("DataTable is out of order; order it correctly to speed loading.");
2320 ret.sort(function(a,b) { return a[0] - b[0] });
2321 }
a685723c
DV
2322 this.rawData_ = ret;
2323
2324 if (annotations.length > 0) {
2325 this.setAnnotations(annotations, true);
2326 }
79420a1e
DV
2327}
2328
24e5350c 2329// These functions are all based on MochiKit.
fc80a396
DV
2330Dygraph.update = function (self, o) {
2331 if (typeof(o) != 'undefined' && o !== null) {
2332 for (var k in o) {
85b99f0b
DV
2333 if (o.hasOwnProperty(k)) {
2334 self[k] = o[k];
2335 }
fc80a396
DV
2336 }
2337 }
2338 return self;
2339};
2340
2dda3850
DV
2341Dygraph.isArrayLike = function (o) {
2342 var typ = typeof(o);
2343 if (
c21d2c2d 2344 (typ != 'object' && !(typ == 'function' &&
2dda3850
DV
2345 typeof(o.item) == 'function')) ||
2346 o === null ||
2347 typeof(o.length) != 'number' ||
2348 o.nodeType === 3
2349 ) {
2350 return false;
2351 }
2352 return true;
2353};
2354
2355Dygraph.isDateLike = function (o) {
2356 if (typeof(o) != "object" || o === null ||
2357 typeof(o.getTime) != 'function') {
2358 return false;
2359 }
2360 return true;
2361};
2362
e3ab7b40
DV
2363Dygraph.clone = function(o) {
2364 // TODO(danvk): figure out how MochiKit's version works
2365 var r = [];
2366 for (var i = 0; i < o.length; i++) {
2367 if (Dygraph.isArrayLike(o[i])) {
2368 r.push(Dygraph.clone(o[i]));
2369 } else {
2370 r.push(o[i]);
2371 }
2372 }
2373 return r;
24e5350c
DV
2374};
2375
2dda3850 2376
79420a1e 2377/**
6a1aa64f
DV
2378 * Get the CSV data. If it's in a function, call that function. If it's in a
2379 * file, do an XMLHttpRequest to get it.
2380 * @private
2381 */
285a6bda 2382Dygraph.prototype.start_ = function() {
6a1aa64f 2383 if (typeof this.file_ == 'function') {
285a6bda 2384 // CSV string. Pretend we got it via XHR.
6a1aa64f 2385 this.loadedEvent_(this.file_());
2dda3850 2386 } else if (Dygraph.isArrayLike(this.file_)) {
285a6bda
DV
2387 this.rawData_ = this.parseArray_(this.file_);
2388 this.drawGraph_(this.rawData_);
79420a1e
DV
2389 } else if (typeof this.file_ == 'object' &&
2390 typeof this.file_.getColumnRange == 'function') {
2391 // must be a DataTable from gviz.
a685723c 2392 this.parseDataTable_(this.file_);
79420a1e 2393 this.drawGraph_(this.rawData_);
285a6bda
DV
2394 } else if (typeof this.file_ == 'string') {
2395 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
2396 if (this.file_.indexOf('\n') >= 0) {
2397 this.loadedEvent_(this.file_);
2398 } else {
2399 var req = new XMLHttpRequest();
2400 var caller = this;
2401 req.onreadystatechange = function () {
2402 if (req.readyState == 4) {
2403 if (req.status == 200) {
2404 caller.loadedEvent_(req.responseText);
2405 }
6a1aa64f 2406 }
285a6bda 2407 };
6a1aa64f 2408
285a6bda
DV
2409 req.open("GET", this.file_, true);
2410 req.send(null);
2411 }
2412 } else {
2413 this.error("Unknown data format: " + (typeof this.file_));
6a1aa64f
DV
2414 }
2415};
2416
2417/**
2418 * Changes various properties of the graph. These can include:
2419 * <ul>
2420 * <li>file: changes the source data for the graph</li>
2421 * <li>errorBars: changes whether the data contains stddev</li>
2422 * </ul>
2423 * @param {Object} attrs The new properties and values
2424 */
285a6bda
DV
2425Dygraph.prototype.updateOptions = function(attrs) {
2426 // TODO(danvk): this is a mess. Rethink this function.
6a1aa64f
DV
2427 if (attrs.rollPeriod) {
2428 this.rollPeriod_ = attrs.rollPeriod;
2429 }
2430 if (attrs.dateWindow) {
2431 this.dateWindow_ = attrs.dateWindow;
2432 }
2433 if (attrs.valueRange) {
2434 this.valueRange_ = attrs.valueRange;
2435 }
fc80a396 2436 Dygraph.update(this.user_attrs_, attrs);
87bb7958 2437 Dygraph.update(this.renderOptions_, attrs);
285a6bda
DV
2438
2439 this.labelsFromCSV_ = (this.attr_("labels") == null);
2440
2441 // TODO(danvk): this doesn't match the constructor logic
2442 this.layout_.updateOptions({ 'errorBars': this.attr_("errorBars") });
5e50289f 2443 if (attrs['file']) {
6a1aa64f
DV
2444 this.file_ = attrs['file'];
2445 this.start_();
2446 } else {
2447 this.drawGraph_(this.rawData_);
2448 }
2449};
2450
2451/**
697e70b2
DV
2452 * Resizes the dygraph. If no parameters are specified, resizes to fill the
2453 * containing div (which has presumably changed size since the dygraph was
2454 * instantiated. If the width/height are specified, the div will be resized.
964f30c6
DV
2455 *
2456 * This is far more efficient than destroying and re-instantiating a
2457 * Dygraph, since it doesn't have to reparse the underlying data.
2458 *
697e70b2
DV
2459 * @param {Number} width Width (in pixels)
2460 * @param {Number} height Height (in pixels)
2461 */
2462Dygraph.prototype.resize = function(width, height) {
e8c7ef86
DV
2463 if (this.resize_lock) {
2464 return;
2465 }
2466 this.resize_lock = true;
2467
697e70b2
DV
2468 if ((width === null) != (height === null)) {
2469 this.warn("Dygraph.resize() should be called with zero parameters or " +
2470 "two non-NULL parameters. Pretending it was zero.");
2471 width = height = null;
2472 }
2473
b16e6369 2474 // TODO(danvk): there should be a clear() method.
697e70b2 2475 this.maindiv_.innerHTML = "";
b16e6369
DV
2476 this.attrs_.labelsDiv = null;
2477
697e70b2
DV
2478 if (width) {
2479 this.maindiv_.style.width = width + "px";
2480 this.maindiv_.style.height = height + "px";
2481 this.width_ = width;
2482 this.height_ = height;
2483 } else {
2484 this.width_ = this.maindiv_.offsetWidth;
2485 this.height_ = this.maindiv_.offsetHeight;
2486 }
2487
2488 this.createInterface_();
964f30c6 2489 this.drawGraph_(this.rawData_);
e8c7ef86
DV
2490
2491 this.resize_lock = false;
697e70b2
DV
2492};
2493
2494/**
6a1aa64f
DV
2495 * Adjusts the number of days in the rolling average. Updates the graph to
2496 * reflect the new averaging period.
2497 * @param {Number} length Number of days over which to average the data.
2498 */
285a6bda 2499Dygraph.prototype.adjustRoll = function(length) {
6a1aa64f
DV
2500 this.rollPeriod_ = length;
2501 this.drawGraph_(this.rawData_);
2502};
540d00f1 2503
f8cfec73 2504/**
1cf11047
DV
2505 * Returns a boolean array of visibility statuses.
2506 */
2507Dygraph.prototype.visibility = function() {
2508 // Do lazy-initialization, so that this happens after we know the number of
2509 // data series.
2510 if (!this.attr_("visibility")) {
f38dec01 2511 this.attrs_["visibility"] = [];
1cf11047
DV
2512 }
2513 while (this.attr_("visibility").length < this.rawData_[0].length - 1) {
f38dec01 2514 this.attr_("visibility").push(true);
1cf11047
DV
2515 }
2516 return this.attr_("visibility");
2517};
2518
2519/**
2520 * Changes the visiblity of a series.
2521 */
2522Dygraph.prototype.setVisibility = function(num, value) {
2523 var x = this.visibility();
2524 if (num < 0 && num >= x.length) {
2525 this.warn("invalid series number in setVisibility: " + num);
2526 } else {
2527 x[num] = value;
2528 this.drawGraph_(this.rawData_);
2529 }
2530};
2531
2532/**
5c528fa2
DV
2533 * Update the list of annotations and redraw the chart.
2534 */
a685723c 2535Dygraph.prototype.setAnnotations = function(ann, suppressDraw) {
5c528fa2
DV
2536 this.annotations_ = ann;
2537 this.layout_.setAnnotations(this.annotations_);
a685723c
DV
2538 if (!suppressDraw) {
2539 this.drawGraph_(this.rawData_);
2540 }
5c528fa2
DV
2541};
2542
2543/**
2544 * Return the list of annotations.
2545 */
2546Dygraph.prototype.annotations = function() {
2547 return this.annotations_;
2548};
2549
2550Dygraph.addAnnotationRule = function() {
2551 if (Dygraph.addedAnnotationCSS) return;
2552
18a016b1
DV
2553 var mysheet;
2554 if (document.styleSheets.length > 0) {
2555 mysheet = document.styleSheets[0];
2556 } else {
2557 var styleSheetElement = document.createElement("style");
2558 styleSheetElement.type = "text/css";
2559 document.getElementsByTagName("head")[0].appendChild(styleSheetElement);
2560 for(i = 0; i < document.styleSheets.length; i++) {
2561 if (document.styleSheets[i].disabled) continue;
2562 mysheet = document.styleSheets[i];
2563 }
2564 }
2565
5c528fa2
DV
2566 var rule = "border: 1px solid black; " +
2567 "background-color: white; " +
2568 "text-align: center;";
2569 if (mysheet.insertRule) { // Firefox
b39466eb 2570 mysheet.insertRule(".dygraphDefaultAnnotation { " + rule + " }", 0);
5c528fa2
DV
2571 } else if (mysheet.addRule) { // IE
2572 mysheet.addRule(".dygraphDefaultAnnotation", rule);
2573 }
2574
2575 Dygraph.addedAnnotationCSS = true;
2576}
2577
2578/**
f8cfec73
DV
2579 * Create a new canvas element. This is more complex than a simple
2580 * document.createElement("canvas") because of IE and excanvas.
2581 */
2582Dygraph.createCanvas = function() {
2583 var canvas = document.createElement("canvas");
2584
2585 isIE = (/MSIE/.test(navigator.userAgent) && !window.opera);
2586 if (isIE) {
2587 canvas = G_vmlCanvasManager.initElement(canvas);
2588 }
2589
2590 return canvas;
2591};
2592
540d00f1
DV
2593
2594/**
285a6bda 2595 * A wrapper around Dygraph that implements the gviz API.
540d00f1
DV
2596 * @param {Object} container The DOM object the visualization should live in.
2597 */
285a6bda 2598Dygraph.GVizChart = function(container) {
540d00f1
DV
2599 this.container = container;
2600}
2601
285a6bda 2602Dygraph.GVizChart.prototype.draw = function(data, options) {
540d00f1 2603 this.container.innerHTML = '';
285a6bda 2604 this.date_graph = new Dygraph(this.container, data, options);
540d00f1 2605}
285a6bda 2606
239c712d
NAG
2607/**
2608 * Google charts compatible setSelection
50360fd0 2609 * Only row selection is supported, all points in the row will be highlighted
239c712d
NAG
2610 * @param {Array} array of the selected cells
2611 * @public
2612 */
2613Dygraph.GVizChart.prototype.setSelection = function(selection_array) {
2614 var row = false;
2615 if (selection_array.length) {
2616 row = selection_array[0].row;
2617 }
2618 this.date_graph.setSelection(row);
2619}
2620
103b7292
NAG
2621/**
2622 * Google charts compatible getSelection implementation
2623 * @return {Array} array of the selected cells
2624 * @public
2625 */
2626Dygraph.GVizChart.prototype.getSelection = function() {
2627 var selection = [];
50360fd0 2628
103b7292 2629 var row = this.date_graph.getSelection();
50360fd0 2630
103b7292 2631 if (row < 0) return selection;
50360fd0 2632
103b7292
NAG
2633 col = 1;
2634 for (var i in this.date_graph.layout_.datasets) {
2635 selection.push({row: row, column: col});
2636 col++;
2637 }
2638
2639 return selection;
2640}
2641
285a6bda
DV
2642// Older pages may still use this name.
2643DateGraph = Dygraph;