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