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