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