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