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