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