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