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