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