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