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