merge upstream changes
[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
285a6bda 27 Date,SeriesA,SeriesB,...
6a1aa64f
DV
28 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
29 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
30
31 If the 'fractions' option is set, the input should be of the form:
32
285a6bda 33 Date,SeriesA,SeriesB,...
6a1aa64f
DV
34 YYYYMMDD,A1/B1,A2/B2,...
35 YYYYMMDD,A1/B1,A2/B2,...
36
37 And error bars will be calculated automatically using a binomial distribution.
38
727439b4 39 For further documentation and examples, see http://dygraphs.com/
6a1aa64f
DV
40
41 */
42
43/**
44 * An interactive, zoomable graph
45 * @param {String | Function} file A file containing CSV data or a function that
46 * returns this data. The expected format for each line is
47 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
48 * YYYYMMDD,val1,stddev1,val2,stddev2,...
6a1aa64f
DV
49 * @param {Object} attrs Various other attributes, e.g. errorBars determines
50 * whether the input data contains error ranges.
51 */
285a6bda
DV
52Dygraph = function(div, data, opts) {
53 if (arguments.length > 0) {
54 if (arguments.length == 4) {
55 // Old versions of dygraphs took in the series labels as a constructor
56 // parameter. This doesn't make sense anymore, but it's easy to continue
57 // to support this usage.
58 this.warn("Using deprecated four-argument dygraph constructor");
59 this.__old_init__(div, data, arguments[2], arguments[3]);
60 } else {
61 this.__init__(div, data, opts);
62 }
63 }
6a1aa64f
DV
64};
65
285a6bda
DV
66Dygraph.NAME = "Dygraph";
67Dygraph.VERSION = "1.2";
68Dygraph.__repr__ = function() {
6a1aa64f
DV
69 return "[" + this.NAME + " " + this.VERSION + "]";
70};
285a6bda 71Dygraph.toString = function() {
6a1aa64f
DV
72 return this.__repr__();
73};
74
75// Various default values
285a6bda
DV
76Dygraph.DEFAULT_ROLL_PERIOD = 1;
77Dygraph.DEFAULT_WIDTH = 480;
78Dygraph.DEFAULT_HEIGHT = 320;
79Dygraph.AXIS_LINE_WIDTH = 0.3;
6a1aa64f 80
d59b6f34 81Dygraph.LOG_SCALE = 10;
0037b2a4 82Dygraph.LN_TEN = Math.log(Dygraph.LOG_SCALE);
d59b6f34 83Dygraph.log10 = function(x) {
0037b2a4 84 return Math.log(x) / Dygraph.LN_TEN;
d59b6f34 85}
062ef401 86
8e4a6af3 87// Default attribute values.
285a6bda 88Dygraph.DEFAULT_ATTRS = {
a9fc39ab 89 highlightCircleSize: 3,
8e4a6af3 90 pixelsPerXLabel: 60,
c6336f04 91 pixelsPerYLabel: 30,
285a6bda 92
8e4a6af3
DV
93 labelsDivWidth: 250,
94 labelsDivStyles: {
95 // TODO(danvk): move defaults from createStatusMessage_ here.
285a6bda
DV
96 },
97 labelsSeparateLines: false,
bcd3ebf0 98 labelsShowZeroValues: true,
285a6bda 99 labelsKMB: false,
afefbcdb 100 labelsKMG2: false,
d160cc3b 101 showLabelsOnHighlight: true,
12e4c741 102
2e1fcf1a
DV
103 yValueFormatter: function(a,b) { return Dygraph.numberFormatter(a,b); },
104 digitsAfterDecimal: 2,
105 maxNumberWidth: 6,
19589a3e 106 sigFigs: null,
285a6bda
DV
107
108 strokeWidth: 1.0,
8e4a6af3 109
8846615a
DV
110 axisTickSize: 3,
111 axisLabelFontSize: 14,
112 xAxisLabelWidth: 50,
113 yAxisLabelWidth: 50,
bf640e56 114 xAxisLabelFormatter: Dygraph.dateAxisFormatter,
8846615a 115 rightGap: 5,
285a6bda
DV
116
117 showRoller: false,
118 xValueFormatter: Dygraph.dateString_,
119 xValueParser: Dygraph.dateParser,
120 xTicker: Dygraph.dateTicker,
121
3d67f03b
DV
122 delimiter: ',',
123
285a6bda
DV
124 sigma: 2.0,
125 errorBars: false,
126 fractions: false,
127 wilsonInterval: true, // only relevant if fractions is true
5954ef32 128 customBars: false,
43af96e7
NK
129 fillGraph: false,
130 fillAlpha: 0.15,
f032c51d 131 connectSeparatedPoints: false,
43af96e7
NK
132
133 stackedGraph: false,
afdc483f
NN
134 hideOverlayOnMouseOut: true,
135
2fccd3dc
DV
136 // TODO(danvk): support 'onmouseover' and 'never', and remove synonyms.
137 legend: 'onmouseover', // the only relevant value at the moment is 'always'.
138
00c281d4 139 stepPlot: false,
062ef401
JB
140 avoidMinZero: false,
141
ad1798c2 142 // Sizes of the various chart labels.
b4202b3d 143 titleHeight: 28,
86cce9e8
DV
144 xLabelHeight: 18,
145 yLabelWidth: 18,
ad1798c2 146
062ef401 147 interactionModel: null // will be set to Dygraph.defaultInteractionModel.
285a6bda
DV
148};
149
150// Various logging levels.
151Dygraph.DEBUG = 1;
152Dygraph.INFO = 2;
153Dygraph.WARNING = 3;
154Dygraph.ERROR = 3;
155
39b0e098
RK
156// Directions for panning and zooming. Use bit operations when combined
157// values are possible.
158Dygraph.HORIZONTAL = 1;
159Dygraph.VERTICAL = 2;
160
5c528fa2
DV
161// Used for initializing annotation CSS rules only once.
162Dygraph.addedAnnotationCSS = false;
163
285a6bda
DV
164Dygraph.prototype.__old_init__ = function(div, file, labels, attrs) {
165 // Labels is no longer a constructor parameter, since it's typically set
166 // directly from the data source. It also conains a name for the x-axis,
167 // which the previous constructor form did not.
168 if (labels != null) {
169 var new_labels = ["Date"];
170 for (var i = 0; i < labels.length; i++) new_labels.push(labels[i]);
fc80a396 171 Dygraph.update(attrs, { 'labels': new_labels });
285a6bda
DV
172 }
173 this.__init__(div, file, attrs);
8e4a6af3
DV
174};
175
6a1aa64f 176/**
285a6bda 177 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
7aedf6fe 178 * and context &lt;canvas&gt; inside of it. See the constructor for details.
6a1aa64f 179 * on the parameters.
12e4c741 180 * @param {Element} div the Element to render the graph into.
6a1aa64f 181 * @param {String | Function} file Source data
6a1aa64f
DV
182 * @param {Object} attrs Miscellaneous other options
183 * @private
184 */
285a6bda 185Dygraph.prototype.__init__ = function(div, file, attrs) {
a2c8fff4
DV
186 // Hack for IE: if we're using excanvas and the document hasn't finished
187 // loading yet (and hence may not have initialized whatever it needs to
188 // initialize), then keep calling this routine periodically until it has.
189 if (/MSIE/.test(navigator.userAgent) && !window.opera &&
190 typeof(G_vmlCanvasManager) != 'undefined' &&
191 document.readyState != 'complete') {
192 var self = this;
193 setTimeout(function() { self.__init__(div, file, attrs) }, 100);
194 }
195
285a6bda
DV
196 // Support two-argument constructor
197 if (attrs == null) { attrs = {}; }
198
6a1aa64f 199 // Copy the important bits into the object
32988383 200 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
6a1aa64f 201 this.maindiv_ = div;
6a1aa64f 202 this.file_ = file;
285a6bda 203 this.rollPeriod_ = attrs.rollPeriod || Dygraph.DEFAULT_ROLL_PERIOD;
6a1aa64f 204 this.previousVerticalX_ = -1;
6a1aa64f 205 this.fractions_ = attrs.fractions || false;
6a1aa64f 206 this.dateWindow_ = attrs.dateWindow || null;
8b83c6cc 207
6a1aa64f 208 this.wilsonInterval_ = attrs.wilsonInterval || true;
fe0b7c03 209 this.is_initial_draw_ = true;
5c528fa2 210 this.annotations_ = [];
7aedf6fe 211
45f2c689 212 // Zoomed indicators - These indicate when the graph has been zoomed and on what axis.
57baab03
NN
213 this.zoomed_x_ = false;
214 this.zoomed_y_ = false;
45f2c689 215
f7d6278e
DV
216 // Clear the div. This ensure that, if multiple dygraphs are passed the same
217 // div, then only one will be drawn.
218 div.innerHTML = "";
219
c21d2c2d 220 // If the div isn't already sized then inherit from our attrs or
221 // give it a default size.
285a6bda 222 if (div.style.width == '') {
ddd1b11f 223 div.style.width = (attrs.width || Dygraph.DEFAULT_WIDTH) + "px";
285a6bda
DV
224 }
225 if (div.style.height == '') {
ddd1b11f 226 div.style.height = (attrs.height || Dygraph.DEFAULT_HEIGHT) + "px";
32988383 227 }
285a6bda
DV
228 this.width_ = parseInt(div.style.width, 10);
229 this.height_ = parseInt(div.style.height, 10);
c21d2c2d 230 // The div might have been specified as percent of the current window size,
231 // convert that to an appropriate number of pixels.
232 if (div.style.width.indexOf("%") == div.style.width.length - 1) {
c6f45033 233 this.width_ = div.offsetWidth;
c21d2c2d 234 }
235 if (div.style.height.indexOf("%") == div.style.height.length - 1) {
c6f45033 236 this.height_ = div.offsetHeight;
c21d2c2d 237 }
32988383 238
10a6456d
DV
239 if (this.width_ == 0) {
240 this.error("dygraph has zero width. Please specify a width in pixels.");
241 }
242 if (this.height_ == 0) {
243 this.error("dygraph has zero height. Please specify a height in pixels.");
244 }
245
344ba8c0 246 // TODO(danvk): set fillGraph to be part of attrs_ here, not user_attrs_.
43af96e7
NK
247 if (attrs['stackedGraph']) {
248 attrs['fillGraph'] = true;
249 // TODO(nikhilk): Add any other stackedGraph checks here.
250 }
251
285a6bda
DV
252 // Dygraphs has many options, some of which interact with one another.
253 // To keep track of everything, we maintain two sets of options:
254 //
c21d2c2d 255 // this.user_attrs_ only options explicitly set by the user.
285a6bda
DV
256 // this.attrs_ defaults, options derived from user_attrs_, data.
257 //
258 // Options are then accessed this.attr_('attr'), which first looks at
259 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
260 // defaults without overriding behavior that the user specifically asks for.
261 this.user_attrs_ = {};
fc80a396 262 Dygraph.update(this.user_attrs_, attrs);
6a1aa64f 263
285a6bda 264 this.attrs_ = {};
fc80a396 265 Dygraph.update(this.attrs_, Dygraph.DEFAULT_ATTRS);
6a1aa64f 266
16269f6e 267 this.boundaryIds_ = [];
6a1aa64f 268
285a6bda
DV
269 // Make a note of whether labels will be pulled from the CSV file.
270 this.labelsFromCSV_ = (this.attr_("labels") == null);
6a1aa64f
DV
271
272 // Create the containing DIV and other interactive elements
273 this.createInterface_();
274
738fc797 275 this.start_();
6a1aa64f
DV
276};
277
dcb25130
NN
278/**
279 * Returns the zoomed status of the chart for one or both axes.
280 *
281 * Axis is an optional parameter. Can be set to 'x' or 'y'.
282 *
283 * The zoomed status for an axis is set whenever a user zooms using the mouse
e5152598 284 * or when the dateWindow or valueRange are updated (unless the isZoomedIgnoreProgrammaticZoom
dcb25130
NN
285 * option is also specified).
286 */
57baab03
NN
287Dygraph.prototype.isZoomed = function(axis) {
288 if (axis == null) return this.zoomed_x_ || this.zoomed_y_;
289 if (axis == 'x') return this.zoomed_x_;
290 if (axis == 'y') return this.zoomed_y_;
291 throw "axis parameter to Dygraph.isZoomed must be missing, 'x' or 'y'.";
292};
293
22bd1dfb
RK
294Dygraph.prototype.toString = function() {
295 var maindiv = this.maindiv_;
296 var id = (maindiv && maindiv.id) ? maindiv.id : maindiv
297 return "[Dygraph " + id + "]";
298}
299
227b93cc 300Dygraph.prototype.attr_ = function(name, seriesName) {
028ddf8a
DV
301// <REMOVE_FOR_COMBINED>
302 if (typeof(Dygraph.OPTIONS_REFERENCE) === 'undefined') {
303 this.error('Must include options reference JS for testing');
304 } else if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(name)) {
305 this.error('Dygraphs is using property ' + name + ', which has no entry ' +
306 'in the Dygraphs.OPTIONS_REFERENCE listing.');
307 // Only log this error once.
308 Dygraph.OPTIONS_REFERENCE[name] = true;
309 }
310// </REMOVE_FOR_COMBINED>
227b93cc
DV
311 if (seriesName &&
312 typeof(this.user_attrs_[seriesName]) != 'undefined' &&
313 this.user_attrs_[seriesName] != null &&
314 typeof(this.user_attrs_[seriesName][name]) != 'undefined') {
315 return this.user_attrs_[seriesName][name];
450fe64b 316 } else if (typeof(this.user_attrs_[name]) != 'undefined') {
285a6bda
DV
317 return this.user_attrs_[name];
318 } else if (typeof(this.attrs_[name]) != 'undefined') {
319 return this.attrs_[name];
320 } else {
321 return null;
322 }
323};
324
325// TODO(danvk): any way I can get the line numbers to be this.warn call?
326Dygraph.prototype.log = function(severity, message) {
327 if (typeof(console) != 'undefined') {
328 switch (severity) {
329 case Dygraph.DEBUG:
330 console.debug('dygraphs: ' + message);
331 break;
332 case Dygraph.INFO:
333 console.info('dygraphs: ' + message);
334 break;
335 case Dygraph.WARNING:
336 console.warn('dygraphs: ' + message);
337 break;
338 case Dygraph.ERROR:
339 console.error('dygraphs: ' + message);
340 break;
341 }
342 }
343}
344Dygraph.prototype.info = function(message) {
345 this.log(Dygraph.INFO, message);
346}
347Dygraph.prototype.warn = function(message) {
348 this.log(Dygraph.WARNING, message);
349}
350Dygraph.prototype.error = function(message) {
351 this.log(Dygraph.ERROR, message);
352}
353
6a1aa64f
DV
354/**
355 * Returns the current rolling period, as set by the user or an option.
6faebb69 356 * @return {Number} The number of points in the rolling window
6a1aa64f 357 */
285a6bda 358Dygraph.prototype.rollPeriod = function() {
6a1aa64f 359 return this.rollPeriod_;
76171648
DV
360};
361
599fb4ad
DV
362/**
363 * Returns the currently-visible x-range. This can be affected by zooming,
364 * panning or a call to updateOptions.
365 * Returns a two-element array: [left, right].
366 * If the Dygraph has dates on the x-axis, these will be millis since epoch.
367 */
368Dygraph.prototype.xAxisRange = function() {
4cac8c7a
RK
369 return this.dateWindow_ ? this.dateWindow_ : this.xAxisExtremes();
370};
599fb4ad 371
4cac8c7a
RK
372/**
373 * Returns the lower- and upper-bound x-axis values of the
374 * data set.
375 */
376Dygraph.prototype.xAxisExtremes = function() {
599fb4ad
DV
377 var left = this.rawData_[0][0];
378 var right = this.rawData_[this.rawData_.length - 1][0];
379 return [left, right];
380};
381
3230c662 382/**
d58ae307
DV
383 * Returns the currently-visible y-range for an axis. This can be affected by
384 * zooming, panning or a call to updateOptions. Axis indices are zero-based. If
385 * called with no arguments, returns the range of the first axis.
3230c662
DV
386 * Returns a two-element array: [bottom, top].
387 */
d58ae307 388Dygraph.prototype.yAxisRange = function(idx) {
d63e6799 389 if (typeof(idx) == "undefined") idx = 0;
d58ae307
DV
390 if (idx < 0 || idx >= this.axes_.length) return null;
391 return [ this.axes_[idx].computedValueRange[0],
392 this.axes_[idx].computedValueRange[1] ];
393};
394
395/**
396 * Returns the currently-visible y-ranges for each axis. This can be affected by
397 * zooming, panning, calls to updateOptions, etc.
398 * Returns an array of [bottom, top] pairs, one for each y-axis.
399 */
400Dygraph.prototype.yAxisRanges = function() {
401 var ret = [];
402 for (var i = 0; i < this.axes_.length; i++) {
403 ret.push(this.yAxisRange(i));
404 }
405 return ret;
3230c662
DV
406};
407
d58ae307 408// TODO(danvk): use these functions throughout dygraphs.
3230c662
DV
409/**
410 * Convert from data coordinates to canvas/div X/Y coordinates.
d58ae307
DV
411 * If specified, do this conversion for the coordinate system of a particular
412 * axis. Uses the first axis by default.
3230c662 413 * Returns a two-element array: [X, Y]
ff022deb 414 *
0747928a 415 * Note: use toDomXCoord instead of toDomCoords(x, null) and use toDomYCoord
ff022deb 416 * instead of toDomCoords(null, y, axis).
3230c662 417 */
d58ae307 418Dygraph.prototype.toDomCoords = function(x, y, axis) {
ff022deb
RK
419 return [ this.toDomXCoord(x), this.toDomYCoord(y, axis) ];
420};
421
422/**
423 * Convert from data x coordinates to canvas/div X coordinate.
424 * If specified, do this conversion for the coordinate system of a particular
0037b2a4
RK
425 * axis.
426 * Returns a single value or null if x is null.
ff022deb
RK
427 */
428Dygraph.prototype.toDomXCoord = function(x) {
429 if (x == null) {
430 return null;
431 };
432
3230c662 433 var area = this.plotter_.area;
ff022deb
RK
434 var xRange = this.xAxisRange();
435 return area.x + (x - xRange[0]) / (xRange[1] - xRange[0]) * area.w;
436}
3230c662 437
ff022deb
RK
438/**
439 * Convert from data x coordinates to canvas/div Y coordinate and optional
440 * axis. Uses the first axis by default.
441 *
442 * returns a single value or null if y is null.
443 */
444Dygraph.prototype.toDomYCoord = function(y, axis) {
0747928a 445 var pct = this.toPercentYCoord(y, axis);
3230c662 446
ff022deb
RK
447 if (pct == null) {
448 return null;
449 }
e4416fb9 450 var area = this.plotter_.area;
ff022deb
RK
451 return area.y + pct * area.h;
452}
3230c662
DV
453
454/**
455 * Convert from canvas/div coords to data coordinates.
d58ae307
DV
456 * If specified, do this conversion for the coordinate system of a particular
457 * axis. Uses the first axis by default.
ff022deb
RK
458 * Returns a two-element array: [X, Y].
459 *
0747928a 460 * Note: use toDataXCoord instead of toDataCoords(x, null) and use toDataYCoord
ff022deb 461 * instead of toDataCoords(null, y, axis).
3230c662 462 */
d58ae307 463Dygraph.prototype.toDataCoords = function(x, y, axis) {
ff022deb
RK
464 return [ this.toDataXCoord(x), this.toDataYCoord(y, axis) ];
465};
466
467/**
468 * Convert from canvas/div x coordinate to data coordinate.
469 *
470 * If x is null, this returns null.
471 */
472Dygraph.prototype.toDataXCoord = function(x) {
473 if (x == null) {
474 return null;
3230c662
DV
475 }
476
ff022deb
RK
477 var area = this.plotter_.area;
478 var xRange = this.xAxisRange();
479 return xRange[0] + (x - area.x) / area.w * (xRange[1] - xRange[0]);
480};
481
482/**
483 * Convert from canvas/div y coord to value.
484 *
485 * If y is null, this returns null.
486 * if axis is null, this uses the first axis.
487 */
488Dygraph.prototype.toDataYCoord = function(y, axis) {
489 if (y == null) {
490 return null;
3230c662
DV
491 }
492
ff022deb
RK
493 var area = this.plotter_.area;
494 var yRange = this.yAxisRange(axis);
495
b70247dc
RK
496 if (typeof(axis) == "undefined") axis = 0;
497 if (!this.axes_[axis].logscale) {
ff022deb
RK
498 return yRange[0] + (area.h - y) / area.h * (yRange[1] - yRange[0]);
499 } else {
500 // Computing the inverse of toDomCoord.
501 var pct = (y - area.y) / area.h
502
503 // Computing the inverse of toPercentYCoord. The function was arrived at with
504 // the following steps:
505 //
506 // Original calcuation:
d59b6f34 507 // pct = (logr1 - Dygraph.log10(y)) / (logr1 - Dygraph.log10(yRange[0]));
ff022deb
RK
508 //
509 // Move denominator to both sides:
d59b6f34 510 // pct * (logr1 - Dygraph.log10(yRange[0])) = logr1 - Dygraph.log10(y);
ff022deb
RK
511 //
512 // subtract logr1, and take the negative value.
d59b6f34 513 // logr1 - (pct * (logr1 - Dygraph.log10(yRange[0]))) = Dygraph.log10(y);
ff022deb
RK
514 //
515 // Swap both sides of the equation, and we can compute the log of the
516 // return value. Which means we just need to use that as the exponent in
517 // e^exponent.
d59b6f34 518 // Dygraph.log10(y) = logr1 - (pct * (logr1 - Dygraph.log10(yRange[0])));
ff022deb 519
d59b6f34
RK
520 var logr1 = Dygraph.log10(yRange[1]);
521 var exponent = logr1 - (pct * (logr1 - Dygraph.log10(yRange[0])));
522 var value = Math.pow(Dygraph.LOG_SCALE, exponent);
ff022deb
RK
523 return value;
524 }
3230c662
DV
525};
526
e99fde05 527/**
ff022deb 528 * Converts a y for an axis to a percentage from the top to the
4cac8c7a 529 * bottom of the drawing area.
ff022deb
RK
530 *
531 * If the coordinate represents a value visible on the canvas, then
532 * the value will be between 0 and 1, where 0 is the top of the canvas.
533 * However, this method will return values outside the range, as
534 * values can fall outside the canvas.
535 *
536 * If y is null, this returns null.
537 * if axis is null, this uses the first axis.
538 */
539Dygraph.prototype.toPercentYCoord = function(y, axis) {
540 if (y == null) {
541 return null;
542 }
7d0e7a0d 543 if (typeof(axis) == "undefined") axis = 0;
ff022deb
RK
544
545 var area = this.plotter_.area;
546 var yRange = this.yAxisRange(axis);
547
548 var pct;
7d0e7a0d 549 if (!this.axes_[axis].logscale) {
4cac8c7a
RK
550 // yRange[1] - y is unit distance from the bottom.
551 // yRange[1] - yRange[0] is the scale of the range.
ff022deb
RK
552 // (yRange[1] - y) / (yRange[1] - yRange[0]) is the % from the bottom.
553 pct = (yRange[1] - y) / (yRange[1] - yRange[0]);
554 } else {
d59b6f34
RK
555 var logr1 = Dygraph.log10(yRange[1]);
556 pct = (logr1 - Dygraph.log10(y)) / (logr1 - Dygraph.log10(yRange[0]));
ff022deb
RK
557 }
558 return pct;
559}
560
561/**
4cac8c7a
RK
562 * Converts an x value to a percentage from the left to the right of
563 * the drawing area.
564 *
565 * If the coordinate represents a value visible on the canvas, then
566 * the value will be between 0 and 1, where 0 is the left of the canvas.
567 * However, this method will return values outside the range, as
568 * values can fall outside the canvas.
569 *
570 * If x is null, this returns null.
571 */
572Dygraph.prototype.toPercentXCoord = function(x) {
573 if (x == null) {
574 return null;
575 }
576
4cac8c7a 577 var xRange = this.xAxisRange();
965a030e 578 return (x - xRange[0]) / (xRange[1] - xRange[0]);
4cac8c7a
RK
579}
580
581/**
e99fde05
DV
582 * Returns the number of columns (including the independent variable).
583 */
584Dygraph.prototype.numColumns = function() {
585 return this.rawData_[0].length;
586};
587
588/**
589 * Returns the number of rows (excluding any header/label row).
590 */
591Dygraph.prototype.numRows = function() {
592 return this.rawData_.length;
593};
594
595/**
596 * Returns the value in the given row and column. If the row and column exceed
597 * the bounds on the data, returns null. Also returns null if the value is
598 * missing.
599 */
600Dygraph.prototype.getValue = function(row, col) {
601 if (row < 0 || row > this.rawData_.length) return null;
602 if (col < 0 || col > this.rawData_[row].length) return null;
603
604 return this.rawData_[row][col];
605};
606
76171648
DV
607Dygraph.addEvent = function(el, evt, fn) {
608 var normed_fn = function(e) {
609 if (!e) var e = window.event;
610 fn(e);
611 };
612 if (window.addEventListener) { // Mozilla, Netscape, Firefox
613 el.addEventListener(evt, normed_fn, false);
614 } else { // IE
615 el.attachEvent('on' + evt, normed_fn);
616 }
617};
6a1aa64f 618
062ef401
JB
619
620// Based on the article at
621// http://www.switchonthecode.com/tutorials/javascript-tutorial-the-scroll-wheel
622Dygraph.cancelEvent = function(e) {
623 e = e ? e : window.event;
624 if (e.stopPropagation) {
625 e.stopPropagation();
626 }
627 if (e.preventDefault) {
628 e.preventDefault();
629 }
630 e.cancelBubble = true;
631 e.cancel = true;
632 e.returnValue = false;
633 return false;
634}
635
636
6a1aa64f 637/**
285a6bda 638 * Generates interface elements for the Dygraph: a containing div, a div to
6a1aa64f 639 * display the current point, and a textbox to adjust the rolling average
697e70b2 640 * period. Also creates the Renderer/Layout elements.
6a1aa64f
DV
641 * @private
642 */
285a6bda 643Dygraph.prototype.createInterface_ = function() {
6a1aa64f
DV
644 // Create the all-enclosing graph div
645 var enclosing = this.maindiv_;
646
b0c3b730
DV
647 this.graphDiv = document.createElement("div");
648 this.graphDiv.style.width = this.width_ + "px";
649 this.graphDiv.style.height = this.height_ + "px";
650 enclosing.appendChild(this.graphDiv);
651
652 // Create the canvas for interactive parts of the chart.
f8cfec73 653 this.canvas_ = Dygraph.createCanvas();
b0c3b730
DV
654 this.canvas_.style.position = "absolute";
655 this.canvas_.width = this.width_;
656 this.canvas_.height = this.height_;
f8cfec73
DV
657 this.canvas_.style.width = this.width_ + "px"; // for IE
658 this.canvas_.style.height = this.height_ + "px"; // for IE
b0c3b730
DV
659
660 // ... and for static parts of the chart.
6a1aa64f 661 this.hidden_ = this.createPlotKitCanvas_(this.canvas_);
76171648 662
eb7bf005
EC
663 // The interactive parts of the graph are drawn on top of the chart.
664 this.graphDiv.appendChild(this.hidden_);
665 this.graphDiv.appendChild(this.canvas_);
666 this.mouseEventElement_ = this.canvas_;
667
76171648 668 var dygraph = this;
eb7bf005 669 Dygraph.addEvent(this.mouseEventElement_, 'mousemove', function(e) {
76171648
DV
670 dygraph.mouseMove_(e);
671 });
eb7bf005 672 Dygraph.addEvent(this.mouseEventElement_, 'mouseout', function(e) {
76171648
DV
673 dygraph.mouseOut_(e);
674 });
697e70b2
DV
675
676 // Create the grapher
677 // TODO(danvk): why does the Layout need its own set of options?
678 this.layoutOptions_ = { 'xOriginIsZero': false };
679 Dygraph.update(this.layoutOptions_, this.attrs_);
680 Dygraph.update(this.layoutOptions_, this.user_attrs_);
681 Dygraph.update(this.layoutOptions_, {
682 'errorBars': (this.attr_("errorBars") || this.attr_("customBars")) });
683
684 this.layout_ = new DygraphLayout(this, this.layoutOptions_);
685
686 // TODO(danvk): why does the Renderer need its own set of options?
687 this.renderOptions_ = { colorScheme: this.colors_,
688 strokeColor: null,
689 axisLineWidth: Dygraph.AXIS_LINE_WIDTH };
690 Dygraph.update(this.renderOptions_, this.attrs_);
691 Dygraph.update(this.renderOptions_, this.user_attrs_);
697e70b2
DV
692
693 this.createStatusMessage_();
697e70b2 694 this.createDragInterface_();
4cfcc38c
DV
695};
696
697/**
698 * Detach DOM elements in the dygraph and null out all data references.
699 * Calling this when you're done with a dygraph can dramatically reduce memory
700 * usage. See, e.g., the tests/perf.html example.
701 */
702Dygraph.prototype.destroy = function() {
703 var removeRecursive = function(node) {
704 while (node.hasChildNodes()) {
705 removeRecursive(node.firstChild);
706 node.removeChild(node.firstChild);
707 }
708 };
709 removeRecursive(this.maindiv_);
710
711 var nullOut = function(obj) {
712 for (var n in obj) {
713 if (typeof(obj[n]) === 'object') {
714 obj[n] = null;
715 }
716 }
717 };
718
719 // These may not all be necessary, but it can't hurt...
720 nullOut(this.layout_);
721 nullOut(this.plotter_);
722 nullOut(this);
723};
6a1aa64f
DV
724
725/**
726 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
285a6bda 727 * this particular canvas. All Dygraph work is done on this.canvas_.
8846615a 728 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
6a1aa64f
DV
729 * @return {Object} The newly-created canvas
730 * @private
731 */
285a6bda 732Dygraph.prototype.createPlotKitCanvas_ = function(canvas) {
f8cfec73 733 var h = Dygraph.createCanvas();
6a1aa64f 734 h.style.position = "absolute";
9ac5e4ae
DV
735 // TODO(danvk): h should be offset from canvas. canvas needs to include
736 // some extra area to make it easier to zoom in on the far left and far
737 // right. h needs to be precisely the plot area, so that clipping occurs.
6a1aa64f
DV
738 h.style.top = canvas.style.top;
739 h.style.left = canvas.style.left;
740 h.width = this.width_;
741 h.height = this.height_;
f8cfec73
DV
742 h.style.width = this.width_ + "px"; // for IE
743 h.style.height = this.height_ + "px"; // for IE
6a1aa64f
DV
744 return h;
745};
746
f474c2a3
DV
747// Taken from MochiKit.Color
748Dygraph.hsvToRGB = function (hue, saturation, value) {
749 var red;
750 var green;
751 var blue;
752 if (saturation === 0) {
753 red = value;
754 green = value;
755 blue = value;
756 } else {
757 var i = Math.floor(hue * 6);
758 var f = (hue * 6) - i;
759 var p = value * (1 - saturation);
760 var q = value * (1 - (saturation * f));
761 var t = value * (1 - (saturation * (1 - f)));
762 switch (i) {
763 case 1: red = q; green = value; blue = p; break;
764 case 2: red = p; green = value; blue = t; break;
765 case 3: red = p; green = q; blue = value; break;
766 case 4: red = t; green = p; blue = value; break;
767 case 5: red = value; green = p; blue = q; break;
768 case 6: // fall through
769 case 0: red = value; green = t; blue = p; break;
770 }
771 }
772 red = Math.floor(255 * red + 0.5);
773 green = Math.floor(255 * green + 0.5);
774 blue = Math.floor(255 * blue + 0.5);
775 return 'rgb(' + red + ',' + green + ',' + blue + ')';
776};
777
778
6a1aa64f
DV
779/**
780 * Generate a set of distinct colors for the data series. This is done with a
781 * color wheel. Saturation/Value are customizable, and the hue is
782 * equally-spaced around the color wheel. If a custom set of colors is
783 * specified, that is used instead.
6a1aa64f
DV
784 * @private
785 */
285a6bda
DV
786Dygraph.prototype.setColors_ = function() {
787 // TODO(danvk): compute this directly into this.attrs_['colorScheme'] and do
788 // away with this.renderOptions_.
789 var num = this.attr_("labels").length - 1;
6a1aa64f 790 this.colors_ = [];
285a6bda
DV
791 var colors = this.attr_('colors');
792 if (!colors) {
793 var sat = this.attr_('colorSaturation') || 1.0;
794 var val = this.attr_('colorValue') || 0.5;
2aa21213 795 var half = Math.ceil(num / 2);
6a1aa64f 796 for (var i = 1; i <= num; i++) {
ec1959eb 797 if (!this.visibility()[i-1]) continue;
43af96e7 798 // alternate colors for high contrast.
2aa21213 799 var idx = i % 2 ? Math.ceil(i / 2) : (half + i / 2);
43af96e7
NK
800 var hue = (1.0 * idx/ (1 + num));
801 this.colors_.push(Dygraph.hsvToRGB(hue, sat, val));
6a1aa64f
DV
802 }
803 } else {
804 for (var i = 0; i < num; i++) {
ec1959eb 805 if (!this.visibility()[i]) continue;
285a6bda 806 var colorStr = colors[i % colors.length];
f474c2a3 807 this.colors_.push(colorStr);
6a1aa64f
DV
808 }
809 }
285a6bda 810
c21d2c2d 811 // TODO(danvk): update this w/r/t/ the new options system.
285a6bda 812 this.renderOptions_.colorScheme = this.colors_;
fc80a396
DV
813 Dygraph.update(this.plotter_.options, this.renderOptions_);
814 Dygraph.update(this.layoutOptions_, this.user_attrs_);
815 Dygraph.update(this.layoutOptions_, this.attrs_);
6a1aa64f
DV
816}
817
43af96e7
NK
818/**
819 * Return the list of colors. This is either the list of colors passed in the
820 * attributes, or the autogenerated list of rgb(r,g,b) strings.
821 * @return {Array<string>} The list of colors.
822 */
823Dygraph.prototype.getColors = function() {
824 return this.colors_;
825};
826
5e60386d
DV
827// The following functions are from quirksmode.org with a modification for Safari from
828// http://blog.firetree.net/2005/07/04/javascript-find-position/
3df0ccf0
DV
829// http://www.quirksmode.org/js/findpos.html
830Dygraph.findPosX = function(obj) {
831 var curleft = 0;
5e60386d 832 if(obj.offsetParent)
50360fd0 833 while(1)
5e60386d 834 {
3df0ccf0 835 curleft += obj.offsetLeft;
5e60386d
DV
836 if(!obj.offsetParent)
837 break;
3df0ccf0
DV
838 obj = obj.offsetParent;
839 }
5e60386d 840 else if(obj.x)
3df0ccf0
DV
841 curleft += obj.x;
842 return curleft;
843};
c21d2c2d 844
3df0ccf0
DV
845Dygraph.findPosY = function(obj) {
846 var curtop = 0;
5e60386d
DV
847 if(obj.offsetParent)
848 while(1)
849 {
3df0ccf0 850 curtop += obj.offsetTop;
5e60386d
DV
851 if(!obj.offsetParent)
852 break;
3df0ccf0
DV
853 obj = obj.offsetParent;
854 }
5e60386d 855 else if(obj.y)
3df0ccf0
DV
856 curtop += obj.y;
857 return curtop;
858};
859
5e60386d 860
71a11a8e 861
6a1aa64f
DV
862/**
863 * Create the div that contains information on the selected point(s)
864 * This goes in the top right of the canvas, unless an external div has already
865 * been specified.
866 * @private
867 */
fedbd797 868Dygraph.prototype.createStatusMessage_ = function() {
869 var userLabelsDiv = this.user_attrs_["labelsDiv"];
870 if (userLabelsDiv && null != userLabelsDiv
871 && (typeof(userLabelsDiv) == "string" || userLabelsDiv instanceof String)) {
872 this.user_attrs_["labelsDiv"] = document.getElementById(userLabelsDiv);
873 }
285a6bda
DV
874 if (!this.attr_("labelsDiv")) {
875 var divWidth = this.attr_('labelsDivWidth');
b0c3b730 876 var messagestyle = {
6a1aa64f
DV
877 "position": "absolute",
878 "fontSize": "14px",
879 "zIndex": 10,
880 "width": divWidth + "px",
881 "top": "0px",
8846615a 882 "left": (this.width_ - divWidth - 2) + "px",
6a1aa64f
DV
883 "background": "white",
884 "textAlign": "left",
b0c3b730 885 "overflow": "hidden"};
fc80a396 886 Dygraph.update(messagestyle, this.attr_('labelsDivStyles'));
b0c3b730
DV
887 var div = document.createElement("div");
888 for (var name in messagestyle) {
85b99f0b
DV
889 if (messagestyle.hasOwnProperty(name)) {
890 div.style[name] = messagestyle[name];
891 }
b0c3b730
DV
892 }
893 this.graphDiv.appendChild(div);
285a6bda 894 this.attrs_.labelsDiv = div;
6a1aa64f
DV
895 }
896};
897
898/**
ad1798c2
DV
899 * Position the labels div so that:
900 * - its right edge is flush with the right edge of the charting area
901 * - its top edge is flush with the top edge of the charting area
0abfbd7e
DV
902 */
903Dygraph.prototype.positionLabelsDiv_ = function() {
904 // Don't touch a user-specified labelsDiv.
905 if (this.user_attrs_.hasOwnProperty("labelsDiv")) return;
906
907 var area = this.plotter_.area;
908 var div = this.attr_("labelsDiv");
8c21adcf 909 div.style.left = area.x + area.w - this.attr_("labelsDivWidth") - 1 + "px";
ad1798c2 910 div.style.top = area.y + "px";
0abfbd7e
DV
911};
912
913/**
6a1aa64f 914 * Create the text box to adjust the averaging period
6a1aa64f
DV
915 * @private
916 */
285a6bda 917Dygraph.prototype.createRollInterface_ = function() {
8c69de65
DV
918 // Create a roller if one doesn't exist already.
919 if (!this.roller_) {
920 this.roller_ = document.createElement("input");
921 this.roller_.type = "text";
922 this.roller_.style.display = "none";
923 this.graphDiv.appendChild(this.roller_);
924 }
925
926 var display = this.attr_('showRoller') ? 'block' : 'none';
26ca7938 927
0c38f187 928 var area = this.plotter_.area;
b0c3b730
DV
929 var textAttr = { "position": "absolute",
930 "zIndex": 10,
0c38f187
DV
931 "top": (area.y + area.h - 25) + "px",
932 "left": (area.x + 1) + "px",
b0c3b730 933 "display": display
6a1aa64f 934 };
8c69de65
DV
935 this.roller_.size = "2";
936 this.roller_.value = this.rollPeriod_;
b0c3b730 937 for (var name in textAttr) {
85b99f0b 938 if (textAttr.hasOwnProperty(name)) {
8c69de65 939 this.roller_.style[name] = textAttr[name];
85b99f0b 940 }
b0c3b730
DV
941 }
942
76171648 943 var dygraph = this;
8c69de65 944 this.roller_.onchange = function() { dygraph.adjustRoll(dygraph.roller_.value); };
76171648
DV
945};
946
947// These functions are taken from MochiKit.Signal
948Dygraph.pageX = function(e) {
949 if (e.pageX) {
950 return (!e.pageX || e.pageX < 0) ? 0 : e.pageX;
951 } else {
952 var de = document;
953 var b = document.body;
954 return e.clientX +
955 (de.scrollLeft || b.scrollLeft) -
956 (de.clientLeft || 0);
957 }
958};
959
960Dygraph.pageY = function(e) {
961 if (e.pageY) {
962 return (!e.pageY || e.pageY < 0) ? 0 : e.pageY;
963 } else {
964 var de = document;
965 var b = document.body;
966 return e.clientY +
967 (de.scrollTop || b.scrollTop) -
968 (de.clientTop || 0);
969 }
970};
6a1aa64f 971
062ef401
JB
972Dygraph.prototype.dragGetX_ = function(e, context) {
973 return Dygraph.pageX(e) - context.px
974};
bce01b0f 975
062ef401
JB
976Dygraph.prototype.dragGetY_ = function(e, context) {
977 return Dygraph.pageY(e) - context.py
978};
ee672584 979
062ef401
JB
980// Called in response to an interaction model operation that
981// should start the default panning behavior.
982//
983// It's used in the default callback for "mousedown" operations.
984// Custom interaction model builders can use it to provide the default
985// panning behavior.
986//
987Dygraph.startPan = function(event, g, context) {
062ef401
JB
988 context.isPanning = true;
989 var xRange = g.xAxisRange();
990 context.dateRange = xRange[1] - xRange[0];
ec291cbe
RK
991 context.initialLeftmostDate = xRange[0];
992 context.xUnitsPerPixel = context.dateRange / (g.plotter_.area.w - 1);
062ef401 993
965a030e
RK
994 if (g.attr_("panEdgeFraction")) {
995 var maxXPixelsToDraw = g.width_ * g.attr_("panEdgeFraction");
4cac8c7a
RK
996 var xExtremes = g.xAxisExtremes(); // I REALLY WANT TO CALL THIS xTremes!
997
998 var boundedLeftX = g.toDomXCoord(xExtremes[0]) - maxXPixelsToDraw;
999 var boundedRightX = g.toDomXCoord(xExtremes[1]) + maxXPixelsToDraw;
1000
1001 var boundedLeftDate = g.toDataXCoord(boundedLeftX);
1002 var boundedRightDate = g.toDataXCoord(boundedRightX);
1003 context.boundedDates = [boundedLeftDate, boundedRightDate];
1004
1005 var boundedValues = [];
965a030e 1006 var maxYPixelsToDraw = g.height_ * g.attr_("panEdgeFraction");
4cac8c7a
RK
1007
1008 for (var i = 0; i < g.axes_.length; i++) {
1009 var axis = g.axes_[i];
1010 var yExtremes = axis.extremeRange;
1011
1012 var boundedTopY = g.toDomYCoord(yExtremes[0], i) + maxYPixelsToDraw;
1013 var boundedBottomY = g.toDomYCoord(yExtremes[1], i) - maxYPixelsToDraw;
1014
1015 var boundedTopValue = g.toDataYCoord(boundedTopY);
1016 var boundedBottomValue = g.toDataYCoord(boundedBottomY);
1017
4cac8c7a
RK
1018 boundedValues[i] = [boundedTopValue, boundedBottomValue];
1019 }
1020 context.boundedValues = boundedValues;
1021 }
1022
062ef401
JB
1023 // Record the range of each y-axis at the start of the drag.
1024 // If any axis has a valueRange or valueWindow, then we want a 2D pan.
1025 context.is2DPan = false;
1026 for (var i = 0; i < g.axes_.length; i++) {
1027 var axis = g.axes_[i];
1028 var yRange = g.yAxisRange(i);
ec291cbe 1029 // TODO(konigsberg): These values should be in |context|.
ed898bdd
RK
1030 // In log scale, initialTopValue, dragValueRange and unitsPerPixel are log scale.
1031 if (axis.logscale) {
1032 axis.initialTopValue = Dygraph.log10(yRange[1]);
1033 axis.dragValueRange = Dygraph.log10(yRange[1]) - Dygraph.log10(yRange[0]);
1034 } else {
1035 axis.initialTopValue = yRange[1];
1036 axis.dragValueRange = yRange[1] - yRange[0];
1037 }
ec291cbe 1038 axis.unitsPerPixel = axis.dragValueRange / (g.plotter_.area.h - 1);
ed898bdd
RK
1039
1040 // While calculating axes, set 2dpan.
062ef401
JB
1041 if (axis.valueWindow || axis.valueRange) context.is2DPan = true;
1042 }
062ef401 1043};
6a1aa64f 1044
062ef401
JB
1045// Called in response to an interaction model operation that
1046// responds to an event that pans the view.
1047//
1048// It's used in the default callback for "mousemove" operations.
1049// Custom interaction model builders can use it to provide the default
1050// panning behavior.
1051//
1052Dygraph.movePan = function(event, g, context) {
1053 context.dragEndX = g.dragGetX_(event, context);
1054 context.dragEndY = g.dragGetY_(event, context);
79b3ee42 1055
ec291cbe
RK
1056 var minDate = context.initialLeftmostDate -
1057 (context.dragEndX - context.dragStartX) * context.xUnitsPerPixel;
4cac8c7a
RK
1058 if (context.boundedDates) {
1059 minDate = Math.max(minDate, context.boundedDates[0]);
1060 }
062ef401 1061 var maxDate = minDate + context.dateRange;
4cac8c7a
RK
1062 if (context.boundedDates) {
1063 if (maxDate > context.boundedDates[1]) {
1064 // Adjust minDate, and recompute maxDate.
1065 minDate = minDate - (maxDate - context.boundedDates[1]);
965a030e 1066 maxDate = minDate + context.dateRange;
4cac8c7a
RK
1067 }
1068 }
1069
062ef401
JB
1070 g.dateWindow_ = [minDate, maxDate];
1071
1072 // y-axis scaling is automatic unless this is a full 2D pan.
1073 if (context.is2DPan) {
1074 // Adjust each axis appropriately.
062ef401
JB
1075 for (var i = 0; i < g.axes_.length; i++) {
1076 var axis = g.axes_[i];
ed898bdd
RK
1077
1078 var pixelsDragged = context.dragEndY - context.dragStartY;
1079 var unitsDragged = pixelsDragged * axis.unitsPerPixel;
4cac8c7a
RK
1080
1081 var boundedValue = context.boundedValues ? context.boundedValues[i] : null;
ed898bdd
RK
1082
1083 // In log scale, maxValue and minValue are the logs of those values.
1084 var maxValue = axis.initialTopValue + unitsDragged;
4cac8c7a
RK
1085 if (boundedValue) {
1086 maxValue = Math.min(maxValue, boundedValue[1]);
1087 }
062ef401 1088 var minValue = maxValue - axis.dragValueRange;
4cac8c7a
RK
1089 if (boundedValue) {
1090 if (minValue < boundedValue[0]) {
1091 // Adjust maxValue, and recompute minValue.
1092 maxValue = maxValue - (minValue - boundedValue[0]);
1093 minValue = maxValue - axis.dragValueRange;
1094 }
1095 }
ed898bdd 1096 if (axis.logscale) {
5db0e241
DV
1097 axis.valueWindow = [ Math.pow(Dygraph.LOG_SCALE, minValue),
1098 Math.pow(Dygraph.LOG_SCALE, maxValue) ];
ed898bdd
RK
1099 } else {
1100 axis.valueWindow = [ minValue, maxValue ];
1101 }
6faebb69 1102 }
062ef401 1103 }
bce01b0f 1104
062ef401
JB
1105 g.drawGraph_();
1106}
ee672584 1107
062ef401
JB
1108// Called in response to an interaction model operation that
1109// responds to an event that ends panning.
1110//
1111// It's used in the default callback for "mouseup" operations.
1112// Custom interaction model builders can use it to provide the default
1113// panning behavior.
1114//
1115Dygraph.endPan = function(event, g, context) {
ec291cbe
RK
1116 // TODO(konigsberg): Clear the context data from the axis.
1117 // TODO(konigsberg): mouseup should just delete the
1118 // context object, and mousedown should create a new one.
062ef401
JB
1119 context.isPanning = false;
1120 context.is2DPan = false;
ec291cbe 1121 context.initialLeftmostDate = null;
062ef401
JB
1122 context.dateRange = null;
1123 context.valueRange = null;
9ec21d0a
RK
1124 context.boundedDates = null;
1125 context.boundedValues = null;
062ef401 1126}
ee672584 1127
062ef401
JB
1128// Called in response to an interaction model operation that
1129// responds to an event that starts zooming.
1130//
1131// It's used in the default callback for "mousedown" operations.
1132// Custom interaction model builders can use it to provide the default
1133// zooming behavior.
1134//
1135Dygraph.startZoom = function(event, g, context) {
1136 context.isZooming = true;
1137}
1138
1139// Called in response to an interaction model operation that
1140// responds to an event that defines zoom boundaries.
1141//
1142// It's used in the default callback for "mousemove" operations.
1143// Custom interaction model builders can use it to provide the default
1144// zooming behavior.
1145//
1146Dygraph.moveZoom = function(event, g, context) {
1147 context.dragEndX = g.dragGetX_(event, context);
1148 context.dragEndY = g.dragGetY_(event, context);
1149
1150 var xDelta = Math.abs(context.dragStartX - context.dragEndX);
1151 var yDelta = Math.abs(context.dragStartY - context.dragEndY);
1152
1153 // drag direction threshold for y axis is twice as large as x axis
1154 context.dragDirection = (xDelta < yDelta / 2) ? Dygraph.VERTICAL : Dygraph.HORIZONTAL;
1155
1156 g.drawZoomRect_(
1157 context.dragDirection,
1158 context.dragStartX,
1159 context.dragEndX,
1160 context.dragStartY,
1161 context.dragEndY,
1162 context.prevDragDirection,
1163 context.prevEndX,
1164 context.prevEndY);
1165
1166 context.prevEndX = context.dragEndX;
1167 context.prevEndY = context.dragEndY;
1168 context.prevDragDirection = context.dragDirection;
1169}
1170
1171// Called in response to an interaction model operation that
1172// responds to an event that performs a zoom based on previously defined
1173// bounds..
1174//
1175// It's used in the default callback for "mouseup" operations.
1176// Custom interaction model builders can use it to provide the default
1177// zooming behavior.
1178//
1179Dygraph.endZoom = function(event, g, context) {
1180 context.isZooming = false;
1181 context.dragEndX = g.dragGetX_(event, context);
1182 context.dragEndY = g.dragGetY_(event, context);
1183 var regionWidth = Math.abs(context.dragEndX - context.dragStartX);
1184 var regionHeight = Math.abs(context.dragEndY - context.dragStartY);
1185
1186 if (regionWidth < 2 && regionHeight < 2 &&
1187 g.lastx_ != undefined && g.lastx_ != -1) {
1188 // TODO(danvk): pass along more info about the points, e.g. 'x'
1189 if (g.attr_('clickCallback') != null) {
1190 g.attr_('clickCallback')(event, g.lastx_, g.selPoints_);
1191 }
1192 if (g.attr_('pointClickCallback')) {
1193 // check if the click was on a particular point.
1194 var closestIdx = -1;
1195 var closestDistance = 0;
1196 for (var i = 0; i < g.selPoints_.length; i++) {
1197 var p = g.selPoints_[i];
1198 var distance = Math.pow(p.canvasx - context.dragEndX, 2) +
1199 Math.pow(p.canvasy - context.dragEndY, 2);
1200 if (closestIdx == -1 || distance < closestDistance) {
1201 closestDistance = distance;
1202 closestIdx = i;
d58ae307
DV
1203 }
1204 }
e3489f4f 1205
062ef401
JB
1206 // Allow any click within two pixels of the dot.
1207 var radius = g.attr_('highlightCircleSize') + 2;
1208 if (closestDistance <= 5 * 5) {
1209 g.attr_('pointClickCallback')(event, g.selPoints_[closestIdx]);
6faebb69 1210 }
062ef401
JB
1211 }
1212 }
0a52ab7a 1213
062ef401
JB
1214 if (regionWidth >= 10 && context.dragDirection == Dygraph.HORIZONTAL) {
1215 g.doZoomX_(Math.min(context.dragStartX, context.dragEndX),
1216 Math.max(context.dragStartX, context.dragEndX));
1217 } else if (regionHeight >= 10 && context.dragDirection == Dygraph.VERTICAL) {
1218 g.doZoomY_(Math.min(context.dragStartY, context.dragEndY),
1219 Math.max(context.dragStartY, context.dragEndY));
1220 } else {
1221 g.canvas_.getContext("2d").clearRect(0, 0,
1222 g.canvas_.width,
1223 g.canvas_.height);
1224 }
1225 context.dragStartX = null;
1226 context.dragStartY = null;
1227}
1228
1229Dygraph.defaultInteractionModel = {
1230 // Track the beginning of drag events
1231 mousedown: function(event, g, context) {
1232 context.initializeMouseDown(event, g, context);
1233
1234 if (event.altKey || event.shiftKey) {
1235 Dygraph.startPan(event, g, context);
bce01b0f 1236 } else {
062ef401 1237 Dygraph.startZoom(event, g, context);
bce01b0f 1238 }
062ef401 1239 },
6a1aa64f 1240
062ef401
JB
1241 // Draw zoom rectangles when the mouse is down and the user moves around
1242 mousemove: function(event, g, context) {
1243 if (context.isZooming) {
1244 Dygraph.moveZoom(event, g, context);
1245 } else if (context.isPanning) {
1246 Dygraph.movePan(event, g, context);
6a1aa64f 1247 }
062ef401 1248 },
bce01b0f 1249
062ef401
JB
1250 mouseup: function(event, g, context) {
1251 if (context.isZooming) {
1252 Dygraph.endZoom(event, g, context);
1253 } else if (context.isPanning) {
1254 Dygraph.endPan(event, g, context);
bce01b0f 1255 }
062ef401 1256 },
6a1aa64f
DV
1257
1258 // Temporarily cancel the dragging event when the mouse leaves the graph
062ef401
JB
1259 mouseout: function(event, g, context) {
1260 if (context.isZooming) {
1261 context.dragEndX = null;
1262 context.dragEndY = null;
6a1aa64f 1263 }
062ef401 1264 },
6a1aa64f 1265
062ef401
JB
1266 // Disable zooming out if panning.
1267 dblclick: function(event, g, context) {
1268 if (event.altKey || event.shiftKey) {
1269 return;
1270 }
1271 // TODO(konigsberg): replace g.doUnzoom()_ with something that is
1272 // friendlier to public use.
1273 g.doUnzoom_();
1274 }
1275};
1e1bf7df 1276
062ef401 1277Dygraph.DEFAULT_ATTRS.interactionModel = Dygraph.defaultInteractionModel;
6a1aa64f 1278
062ef401
JB
1279/**
1280 * Set up all the mouse handlers needed to capture dragging behavior for zoom
1281 * events.
1282 * @private
1283 */
1284Dygraph.prototype.createDragInterface_ = function() {
1285 var context = {
1286 // Tracks whether the mouse is down right now
1287 isZooming: false,
1288 isPanning: false, // is this drag part of a pan?
1289 is2DPan: false, // if so, is that pan 1- or 2-dimensional?
1290 dragStartX: null,
1291 dragStartY: null,
1292 dragEndX: null,
1293 dragEndY: null,
1294 dragDirection: null,
1295 prevEndX: null,
1296 prevEndY: null,
1297 prevDragDirection: null,
1298
ec291cbe
RK
1299 // The value on the left side of the graph when a pan operation starts.
1300 initialLeftmostDate: null,
1301
1302 // The number of units each pixel spans. (This won't be valid for log
1303 // scales)
1304 xUnitsPerPixel: null,
062ef401
JB
1305
1306 // TODO(danvk): update this comment
1307 // The range in second/value units that the viewport encompasses during a
1308 // panning operation.
1309 dateRange: null,
1310
1311 // Utility function to convert page-wide coordinates to canvas coords
1312 px: 0,
1313 py: 0,
1314
965a030e 1315 // Values for use with panEdgeFraction, which limit how far outside the
4cac8c7a
RK
1316 // graph's data boundaries it can be panned.
1317 boundedDates: null, // [minDate, maxDate]
1318 boundedValues: null, // [[minValue, maxValue] ...]
1319
062ef401
JB
1320 initializeMouseDown: function(event, g, context) {
1321 // prevents mouse drags from selecting page text.
1322 if (event.preventDefault) {
1323 event.preventDefault(); // Firefox, Chrome, etc.
6a1aa64f 1324 } else {
062ef401
JB
1325 event.returnValue = false; // IE
1326 event.cancelBubble = true;
6a1aa64f
DV
1327 }
1328
062ef401
JB
1329 context.px = Dygraph.findPosX(g.canvas_);
1330 context.py = Dygraph.findPosY(g.canvas_);
1331 context.dragStartX = g.dragGetX_(event, context);
1332 context.dragStartY = g.dragGetY_(event, context);
6a1aa64f 1333 }
062ef401 1334 };
2b188b3d 1335
062ef401 1336 var interactionModel = this.attr_("interactionModel");
8b83c6cc 1337
062ef401
JB
1338 // Self is the graph.
1339 var self = this;
6faebb69 1340
062ef401
JB
1341 // Function that binds the graph and context to the handler.
1342 var bindHandler = function(handler) {
1343 return function(event) {
1344 handler(event, self, context);
1345 };
1346 };
1347
1348 for (var eventName in interactionModel) {
1349 if (!interactionModel.hasOwnProperty(eventName)) continue;
1350 Dygraph.addEvent(this.mouseEventElement_, eventName,
1351 bindHandler(interactionModel[eventName]));
1352 }
1353
1354 // If the user releases the mouse button during a drag, but not over the
1355 // canvas, then it doesn't count as a zooming action.
1356 Dygraph.addEvent(document, 'mouseup', function(event) {
1357 if (context.isZooming || context.isPanning) {
1358 context.isZooming = false;
1359 context.dragStartX = null;
1360 context.dragStartY = null;
1361 }
1362
1363 if (context.isPanning) {
1364 context.isPanning = false;
1365 context.draggingDate = null;
1366 context.dateRange = null;
1367 for (var i = 0; i < self.axes_.length; i++) {
1368 delete self.axes_[i].draggingValue;
1369 delete self.axes_[i].dragValueRange;
1370 }
1371 }
6a1aa64f
DV
1372 });
1373};
1374
062ef401 1375
6a1aa64f
DV
1376/**
1377 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
1378 * up any previous zoom rectangles that were drawn. This could be optimized to
1379 * avoid extra redrawing, but it's tricky to avoid interactions with the status
1380 * dots.
8b83c6cc 1381 *
39b0e098
RK
1382 * @param {Number} direction the direction of the zoom rectangle. Acceptable
1383 * values are Dygraph.HORIZONTAL and Dygraph.VERTICAL.
6a1aa64f
DV
1384 * @param {Number} startX The X position where the drag started, in canvas
1385 * coordinates.
1386 * @param {Number} endX The current X position of the drag, in canvas coords.
8b83c6cc
RK
1387 * @param {Number} startY The Y position where the drag started, in canvas
1388 * coordinates.
1389 * @param {Number} endY The current Y position of the drag, in canvas coords.
39b0e098 1390 * @param {Number} prevDirection the value of direction on the previous call to
8b83c6cc 1391 * this function. Used to avoid excess redrawing
6a1aa64f
DV
1392 * @param {Number} prevEndX The value of endX on the previous call to this
1393 * function. Used to avoid excess redrawing
8b83c6cc
RK
1394 * @param {Number} prevEndY The value of endY on the previous call to this
1395 * function. Used to avoid excess redrawing
6a1aa64f
DV
1396 * @private
1397 */
7201b11e
JB
1398Dygraph.prototype.drawZoomRect_ = function(direction, startX, endX, startY,
1399 endY, prevDirection, prevEndX,
1400 prevEndY) {
6a1aa64f
DV
1401 var ctx = this.canvas_.getContext("2d");
1402
1403 // Clean up from the previous rect if necessary
39b0e098 1404 if (prevDirection == Dygraph.HORIZONTAL) {
6a1aa64f
DV
1405 ctx.clearRect(Math.min(startX, prevEndX), 0,
1406 Math.abs(startX - prevEndX), this.height_);
39b0e098 1407 } else if (prevDirection == Dygraph.VERTICAL){
8b83c6cc
RK
1408 ctx.clearRect(0, Math.min(startY, prevEndY),
1409 this.width_, Math.abs(startY - prevEndY));
6a1aa64f
DV
1410 }
1411
1412 // Draw a light-grey rectangle to show the new viewing area
39b0e098 1413 if (direction == Dygraph.HORIZONTAL) {
8b83c6cc
RK
1414 if (endX && startX) {
1415 ctx.fillStyle = "rgba(128,128,128,0.33)";
1416 ctx.fillRect(Math.min(startX, endX), 0,
1417 Math.abs(endX - startX), this.height_);
1418 }
1419 }
39b0e098 1420 if (direction == Dygraph.VERTICAL) {
8b83c6cc
RK
1421 if (endY && startY) {
1422 ctx.fillStyle = "rgba(128,128,128,0.33)";
1423 ctx.fillRect(0, Math.min(startY, endY),
1424 this.width_, Math.abs(endY - startY));
1425 }
6a1aa64f
DV
1426 }
1427};
1428
1429/**
8b83c6cc
RK
1430 * Zoom to something containing [lowX, highX]. These are pixel coordinates in
1431 * the canvas. The exact zoom window may be slightly larger if there are no data
1432 * points near lowX or highX. Don't confuse this function with doZoomXDates,
1433 * which accepts dates that match the raw data. This function redraws the graph.
d58ae307 1434 *
6a1aa64f
DV
1435 * @param {Number} lowX The leftmost pixel value that should be visible.
1436 * @param {Number} highX The rightmost pixel value that should be visible.
1437 * @private
1438 */
8b83c6cc 1439Dygraph.prototype.doZoomX_ = function(lowX, highX) {
6a1aa64f 1440 // Find the earliest and latest dates contained in this canvasx range.
8b83c6cc 1441 // Convert the call to date ranges of the raw data.
ff022deb
RK
1442 var minDate = this.toDataXCoord(lowX);
1443 var maxDate = this.toDataXCoord(highX);
8b83c6cc
RK
1444 this.doZoomXDates_(minDate, maxDate);
1445};
6a1aa64f 1446
8b83c6cc
RK
1447/**
1448 * Zoom to something containing [minDate, maxDate] values. Don't confuse this
1449 * method with doZoomX which accepts pixel coordinates. This function redraws
1450 * the graph.
d58ae307 1451 *
8b83c6cc
RK
1452 * @param {Number} minDate The minimum date that should be visible.
1453 * @param {Number} maxDate The maximum date that should be visible.
1454 * @private
1455 */
1456Dygraph.prototype.doZoomXDates_ = function(minDate, maxDate) {
6a1aa64f 1457 this.dateWindow_ = [minDate, maxDate];
57baab03 1458 this.zoomed_x_ = true;
26ca7938 1459 this.drawGraph_();
285a6bda 1460 if (this.attr_("zoomCallback")) {
ac139d19 1461 this.attr_("zoomCallback")(minDate, maxDate, this.yAxisRanges());
8b83c6cc
RK
1462 }
1463};
1464
1465/**
1466 * Zoom to something containing [lowY, highY]. These are pixel coordinates in
d58ae307
DV
1467 * the canvas. This function redraws the graph.
1468 *
8b83c6cc
RK
1469 * @param {Number} lowY The topmost pixel value that should be visible.
1470 * @param {Number} highY The lowest pixel value that should be visible.
1471 * @private
1472 */
1473Dygraph.prototype.doZoomY_ = function(lowY, highY) {
d58ae307
DV
1474 // Find the highest and lowest values in pixel range for each axis.
1475 // Note that lowY (in pixels) corresponds to the max Value (in data coords).
1476 // This is because pixels increase as you go down on the screen, whereas data
1477 // coordinates increase as you go up the screen.
1478 var valueRanges = [];
1479 for (var i = 0; i < this.axes_.length; i++) {
ff022deb
RK
1480 var hi = this.toDataYCoord(lowY, i);
1481 var low = this.toDataYCoord(highY, i);
1482 this.axes_[i].valueWindow = [low, hi];
1483 valueRanges.push([low, hi]);
d58ae307 1484 }
8b83c6cc 1485
57baab03 1486 this.zoomed_y_ = true;
66c380c4 1487 this.drawGraph_();
8b83c6cc 1488 if (this.attr_("zoomCallback")) {
d58ae307 1489 var xRange = this.xAxisRange();
45f2c689 1490 var yRange = this.yAxisRange();
d58ae307 1491 this.attr_("zoomCallback")(xRange[0], xRange[1], this.yAxisRanges());
8b83c6cc
RK
1492 }
1493};
1494
1495/**
1496 * Reset the zoom to the original view coordinates. This is the same as
1497 * double-clicking on the graph.
d58ae307 1498 *
8b83c6cc
RK
1499 * @private
1500 */
1501Dygraph.prototype.doUnzoom_ = function() {
d58ae307 1502 var dirty = false;
8b83c6cc 1503 if (this.dateWindow_ != null) {
d58ae307 1504 dirty = true;
8b83c6cc
RK
1505 this.dateWindow_ = null;
1506 }
d58ae307
DV
1507
1508 for (var i = 0; i < this.axes_.length; i++) {
1509 if (this.axes_[i].valueWindow != null) {
1510 dirty = true;
1511 delete this.axes_[i].valueWindow;
1512 }
8b83c6cc
RK
1513 }
1514
1515 if (dirty) {
437c0979
RK
1516 // Putting the drawing operation before the callback because it resets
1517 // yAxisRange.
57baab03
NN
1518 this.zoomed_x_ = false;
1519 this.zoomed_y_ = false;
66c380c4 1520 this.drawGraph_();
8b83c6cc
RK
1521 if (this.attr_("zoomCallback")) {
1522 var minDate = this.rawData_[0][0];
1523 var maxDate = this.rawData_[this.rawData_.length - 1][0];
d58ae307 1524 this.attr_("zoomCallback")(minDate, maxDate, this.yAxisRanges());
8b83c6cc 1525 }
67e650dc 1526 }
6a1aa64f
DV
1527};
1528
1529/**
1530 * When the mouse moves in the canvas, display information about a nearby data
1531 * point and draw dots over those points in the data series. This function
1532 * takes care of cleanup of previously-drawn dots.
1533 * @param {Object} event The mousemove event from the browser.
1534 * @private
1535 */
285a6bda 1536Dygraph.prototype.mouseMove_ = function(event) {
e863a17d 1537 // This prevents JS errors when mousing over the canvas before data loads.
4cac8c7a 1538 var points = this.layout_.points;
685ebbb3 1539 if (points === undefined) return;
e863a17d 1540
4cac8c7a
RK
1541 var canvasx = Dygraph.pageX(event) - Dygraph.findPosX(this.mouseEventElement_);
1542
6a1aa64f
DV
1543 var lastx = -1;
1544 var lasty = -1;
1545
1546 // Loop through all the points and find the date nearest to our current
1547 // location.
1548 var minDist = 1e+100;
1549 var idx = -1;
1550 for (var i = 0; i < points.length; i++) {
8a7cc60e
RK
1551 var point = points[i];
1552 if (point == null) continue;
062ef401 1553 var dist = Math.abs(point.canvasx - canvasx);
f032c51d 1554 if (dist > minDist) continue;
6a1aa64f
DV
1555 minDist = dist;
1556 idx = i;
1557 }
1558 if (idx >= 0) lastx = points[idx].xval;
6a1aa64f
DV
1559
1560 // Extract the points we've selected
b258a3da 1561 this.selPoints_ = [];
50360fd0 1562 var l = points.length;
416b05ad
NK
1563 if (!this.attr_("stackedGraph")) {
1564 for (var i = 0; i < l; i++) {
1565 if (points[i].xval == lastx) {
1566 this.selPoints_.push(points[i]);
1567 }
1568 }
1569 } else {
354e15ab
DE
1570 // Need to 'unstack' points starting from the bottom
1571 var cumulative_sum = 0;
416b05ad
NK
1572 for (var i = l - 1; i >= 0; i--) {
1573 if (points[i].xval == lastx) {
354e15ab 1574 var p = {}; // Clone the point since we modify it
d4139cd8
NK
1575 for (var k in points[i]) {
1576 p[k] = points[i][k];
50360fd0
NK
1577 }
1578 p.yval -= cumulative_sum;
1579 cumulative_sum += p.yval;
d4139cd8 1580 this.selPoints_.push(p);
12e4c741 1581 }
6a1aa64f 1582 }
354e15ab 1583 this.selPoints_.reverse();
6a1aa64f
DV
1584 }
1585
b258a3da 1586 if (this.attr_("highlightCallback")) {
a4c6a67c 1587 var px = this.lastx_;
dd082dda 1588 if (px !== null && lastx != px) {
344ba8c0 1589 // only fire if the selected point has changed.
2ddb1197 1590 this.attr_("highlightCallback")(event, lastx, this.selPoints_, this.idxToRow_(idx));
43af96e7 1591 }
12e4c741 1592 }
43af96e7 1593
239c712d
NAG
1594 // Save last x position for callbacks.
1595 this.lastx_ = lastx;
50360fd0 1596
239c712d
NAG
1597 this.updateSelection_();
1598};
b258a3da 1599
239c712d 1600/**
1903f1e4 1601 * Transforms layout_.points index into data row number.
2ddb1197 1602 * @param int layout_.points index
1903f1e4 1603 * @return int row number, or -1 if none could be found.
2ddb1197
SC
1604 * @private
1605 */
1606Dygraph.prototype.idxToRow_ = function(idx) {
1903f1e4 1607 if (idx < 0) return -1;
2ddb1197 1608
1903f1e4
DV
1609 for (var i in this.layout_.datasets) {
1610 if (idx < this.layout_.datasets[i].length) {
1611 return this.boundaryIds_[0][0]+idx;
1612 }
1613 idx -= this.layout_.datasets[i].length;
1614 }
1615 return -1;
1616};
2ddb1197 1617
2fccd3dc 1618// TODO(danvk): rename this function to something like 'isNonZeroNan'.
e9fe4a2f
DV
1619Dygraph.isOK = function(x) {
1620 return x && !isNaN(x);
1621};
1622
1623Dygraph.prototype.generateLegendHTML_ = function(x, sel_points) {
2fccd3dc
DV
1624 // If no points are selected, we display a default legend. Traditionally,
1625 // this has been blank. But a better default would be a conventional legend,
1626 // which provides essential information for a non-interactive chart.
1627 if (typeof(x) === 'undefined') {
1628 if (this.attr_('legend') != 'always') return '';
1629
1630 var sepLines = this.attr_('labelsSeparateLines');
1631 var labels = this.attr_('labels');
1632 var html = '';
1633 for (var i = 1; i < labels.length; i++) {
352c8310 1634 if (!this.visibility()[i - 1]) continue;
bafe040e 1635 var c = this.plotter_.colors[labels[i]];
352c8310 1636 if (html != '') html += (sepLines ? '<br/>' : ' ');
bafe040e
DV
1637 html += "<b><span style='color: " + c + ";'>&mdash;" + labels[i] +
1638 "</span></b>";
2fccd3dc
DV
1639 }
1640 return html;
1641 }
1642
032e4c1d 1643 var html = this.attr_('xValueFormatter')(x) + ":";
e9fe4a2f
DV
1644
1645 var fmtFunc = this.attr_('yValueFormatter');
1646 var showZeros = this.attr_("labelsShowZeroValues");
1647 var sepLines = this.attr_("labelsSeparateLines");
1648 for (var i = 0; i < this.selPoints_.length; i++) {
1649 var pt = this.selPoints_[i];
1650 if (pt.yval == 0 && !showZeros) continue;
1651 if (!Dygraph.isOK(pt.canvasy)) continue;
1652 if (sepLines) html += "<br/>";
1653
bafe040e 1654 var c = this.plotter_.colors[pt.name];
e9fe4a2f 1655 var yval = fmtFunc(pt.yval, displayDigits);
2fccd3dc 1656 // TODO(danvk): use a template string here and make it an attribute.
bafe040e
DV
1657 html += " <b><span style='color: " + c + ";'>"
1658 + pt.name + "</span></b>:"
e9fe4a2f
DV
1659 + yval;
1660 }
1661 return html;
1662};
1663
2ddb1197 1664/**
239c712d
NAG
1665 * Draw dots over the selectied points in the data series. This function
1666 * takes care of cleanup of previously-drawn dots.
1667 * @private
1668 */
1669Dygraph.prototype.updateSelection_ = function() {
6a1aa64f 1670 // Clear the previously drawn vertical, if there is one
6a1aa64f
DV
1671 var ctx = this.canvas_.getContext("2d");
1672 if (this.previousVerticalX_ >= 0) {
46dde5f9
DV
1673 // Determine the maximum highlight circle size.
1674 var maxCircleSize = 0;
227b93cc
DV
1675 var labels = this.attr_('labels');
1676 for (var i = 1; i < labels.length; i++) {
1677 var r = this.attr_('highlightCircleSize', labels[i]);
46dde5f9
DV
1678 if (r > maxCircleSize) maxCircleSize = r;
1679 }
6a1aa64f 1680 var px = this.previousVerticalX_;
46dde5f9
DV
1681 ctx.clearRect(px - maxCircleSize - 1, 0,
1682 2 * maxCircleSize + 2, this.height_);
6a1aa64f
DV
1683 }
1684
d160cc3b 1685 if (this.selPoints_.length > 0) {
6a1aa64f 1686 // Set the status message to indicate the selected point(s)
d160cc3b 1687 if (this.attr_('showLabelsOnHighlight')) {
e9fe4a2f
DV
1688 var html = this.generateLegendHTML_(this.lastx_, this.selPoints_);
1689 this.attr_("labelsDiv").innerHTML = html;
6a1aa64f 1690 }
6a1aa64f 1691
6a1aa64f 1692 // Draw colored circles over the center of each selected point
e9fe4a2f 1693 var canvasx = this.selPoints_[0].canvasx;
43af96e7 1694 ctx.save();
b258a3da 1695 for (var i = 0; i < this.selPoints_.length; i++) {
e9fe4a2f
DV
1696 var pt = this.selPoints_[i];
1697 if (!Dygraph.isOK(pt.canvasy)) continue;
1698
1699 var circleSize = this.attr_('highlightCircleSize', pt.name);
6a1aa64f 1700 ctx.beginPath();
e9fe4a2f
DV
1701 ctx.fillStyle = this.plotter_.colors[pt.name];
1702 ctx.arc(canvasx, pt.canvasy, circleSize, 0, 2 * Math.PI, false);
6a1aa64f
DV
1703 ctx.fill();
1704 }
1705 ctx.restore();
1706
1707 this.previousVerticalX_ = canvasx;
1708 }
1709};
1710
1711/**
239c712d
NAG
1712 * Set manually set selected dots, and display information about them
1713 * @param int row number that should by highlighted
1714 * false value clears the selection
1715 * @public
1716 */
1717Dygraph.prototype.setSelection = function(row) {
1718 // Extract the points we've selected
1719 this.selPoints_ = [];
1720 var pos = 0;
50360fd0 1721
239c712d 1722 if (row !== false) {
16269f6e
NAG
1723 row = row-this.boundaryIds_[0][0];
1724 }
50360fd0 1725
16269f6e 1726 if (row !== false && row >= 0) {
239c712d 1727 for (var i in this.layout_.datasets) {
16269f6e 1728 if (row < this.layout_.datasets[i].length) {
38f33a44 1729 var point = this.layout_.points[pos+row];
1730
1731 if (this.attr_("stackedGraph")) {
8c03ba63 1732 point = this.layout_.unstackPointAtIndex(pos+row);
38f33a44 1733 }
1734
1735 this.selPoints_.push(point);
16269f6e 1736 }
239c712d
NAG
1737 pos += this.layout_.datasets[i].length;
1738 }
16269f6e 1739 }
50360fd0 1740
16269f6e 1741 if (this.selPoints_.length) {
239c712d
NAG
1742 this.lastx_ = this.selPoints_[0].xval;
1743 this.updateSelection_();
1744 } else {
239c712d
NAG
1745 this.clearSelection();
1746 }
1747
1748};
1749
1750/**
6a1aa64f
DV
1751 * The mouse has left the canvas. Clear out whatever artifacts remain
1752 * @param {Object} event the mouseout event from the browser.
1753 * @private
1754 */
285a6bda 1755Dygraph.prototype.mouseOut_ = function(event) {
a4c6a67c
AV
1756 if (this.attr_("unhighlightCallback")) {
1757 this.attr_("unhighlightCallback")(event);
1758 }
1759
43af96e7 1760 if (this.attr_("hideOverlayOnMouseOut")) {
239c712d 1761 this.clearSelection();
43af96e7 1762 }
6a1aa64f
DV
1763};
1764
239c712d
NAG
1765/**
1766 * Remove all selection from the canvas
1767 * @public
1768 */
1769Dygraph.prototype.clearSelection = function() {
1770 // Get rid of the overlay data
1771 var ctx = this.canvas_.getContext("2d");
1772 ctx.clearRect(0, 0, this.width_, this.height_);
2fccd3dc 1773 this.attr_('labelsDiv').innerHTML = this.generateLegendHTML_();
239c712d
NAG
1774 this.selPoints_ = [];
1775 this.lastx_ = -1;
1776}
1777
103b7292
NAG
1778/**
1779 * Returns the number of the currently selected row
1780 * @return int row number, of -1 if nothing is selected
1781 * @public
1782 */
1783Dygraph.prototype.getSelection = function() {
1784 if (!this.selPoints_ || this.selPoints_.length < 1) {
1785 return -1;
1786 }
50360fd0 1787
103b7292
NAG
1788 for (var row=0; row<this.layout_.points.length; row++ ) {
1789 if (this.layout_.points[row].x == this.selPoints_[0].x) {
16269f6e 1790 return row + this.boundaryIds_[0][0];
103b7292
NAG
1791 }
1792 }
1793 return -1;
2e1fcf1a 1794};
103b7292 1795
19589a3e
DV
1796/**
1797 * Number formatting function which mimicks the behavior of %g in printf, i.e.
1798 * either exponential or fixed format (without trailing 0s) is used depending on
1799 * the length of the generated string. The advantage of this format is that
1800 * there is a predictable upper bound on the resulting string length,
1801 * significant figures are not dropped, and normal numbers are not displayed in
1802 * exponential notation.
1803 *
1804 * NOTE: JavaScript's native toPrecision() is NOT a drop-in replacement for %g.
1805 * It creates strings which are too long for absolute values between 10^-4 and
1806 * 10^-6, e.g. '0.00001' instead of '1e-5'. See tests/number-format.html for
1807 * output examples.
1808 *
1809 * @param {Number} x The number to format
1810 * @param {Number} opt_precision The precision to use, default 2.
1811 * @return {String} A string formatted like %g in printf. The max generated
1812 * string length should be precision + 6 (e.g 1.123e+300).
1813 */
1814Dygraph.floatFormat = function(x, opt_precision) {
1815 // Avoid invalid precision values; [1, 21] is the valid range.
1816 var p = Math.min(Math.max(1, opt_precision || 2), 21);
1817
1818 // This is deceptively simple. The actual algorithm comes from:
1819 //
1820 // Max allowed length = p + 4
1821 // where 4 comes from 'e+n' and '.'.
1822 //
1823 // Length of fixed format = 2 + y + p
1824 // where 2 comes from '0.' and y = # of leading zeroes.
1825 //
1826 // Equating the two and solving for y yields y = 2, or 0.00xxxx which is
1827 // 1.0e-3.
1828 //
1829 // Since the behavior of toPrecision() is identical for larger numbers, we
1830 // don't have to worry about the other bound.
1831 //
1832 // Finally, the argument for toExponential() is the number of trailing digits,
1833 // so we take off 1 for the value before the '.'.
1834 return (Math.abs(x) < 1.0e-3 && x != 0.0) ?
1835 x.toExponential(p - 1) : x.toPrecision(p);
2e1fcf1a
DV
1836};
1837
1838/**
1839 * Return a string version of a number. This respects the digitsAfterDecimal
1840 * and maxNumberWidth options.
1841 * @param {Number} x The number to be formatted
1842 * @param {Dygraph} g The dygraph object
1843 */
1844Dygraph.numberFormatter = function(x, g) {
19589a3e
DV
1845 var sigFigs = g.attr_('sigFigs');
1846
1847 if (sigFigs !== null) {
1848 // User has opted for a fixed number of significant figures.
1849 return Dygraph.floatFormat(x, sigFigs);
1850 }
1851
2e1fcf1a
DV
1852 var digits = g.attr_('digitsAfterDecimal');
1853 var maxNumberWidth = g.attr_('maxNumberWidth');
1854
19589a3e
DV
1855 // switch to scientific notation if we underflow or overflow fixed display.
1856 if (x !== 0.0 &&
1857 (Math.abs(x) >= Math.pow(10, maxNumberWidth) ||
1858 Math.abs(x) < Math.pow(10, -digits))) {
1859 return x.toExponential(digits);
2e1fcf1a
DV
1860 } else {
1861 return '' + Dygraph.round_(x, digits);
1862 }
1863};
32988383 1864
19589a3e
DV
1865Dygraph.zeropad = function(x) {
1866 if (x < 10) return "0" + x; else return "" + x;
1867};
1868
6a1aa64f 1869/**
6b8e33dd
DV
1870 * Return a string version of the hours, minutes and seconds portion of a date.
1871 * @param {Number} date The JavaScript date (ms since epoch)
1872 * @return {String} A time of the form "HH:MM:SS"
1873 * @private
1874 */
bf640e56 1875Dygraph.hmsString_ = function(date) {
285a6bda 1876 var zeropad = Dygraph.zeropad;
6b8e33dd
DV
1877 var d = new Date(date);
1878 if (d.getSeconds()) {
1879 return zeropad(d.getHours()) + ":" +
1880 zeropad(d.getMinutes()) + ":" +
1881 zeropad(d.getSeconds());
6b8e33dd 1882 } else {
054531ca 1883 return zeropad(d.getHours()) + ":" + zeropad(d.getMinutes());
6b8e33dd 1884 }
2e1fcf1a 1885};
6b8e33dd
DV
1886
1887/**
bf640e56
AV
1888 * Convert a JS date to a string appropriate to display on an axis that
1889 * is displaying values at the stated granularity.
1890 * @param {Date} date The date to format
1891 * @param {Number} granularity One of the Dygraph granularity constants
1892 * @return {String} The formatted date
1893 * @private
1894 */
1895Dygraph.dateAxisFormatter = function(date, granularity) {
062ef401
JB
1896 if (granularity >= Dygraph.DECADAL) {
1897 return date.strftime('%Y');
1898 } else if (granularity >= Dygraph.MONTHLY) {
bf640e56
AV
1899 return date.strftime('%b %y');
1900 } else {
31eddad3 1901 var frac = date.getHours() * 3600 + date.getMinutes() * 60 + date.getSeconds() + date.getMilliseconds();
bf640e56
AV
1902 if (frac == 0 || granularity >= Dygraph.DAILY) {
1903 return new Date(date.getTime() + 3600*1000).strftime('%d%b');
1904 } else {
1905 return Dygraph.hmsString_(date.getTime());
1906 }
1907 }
2e1fcf1a 1908};
bf640e56
AV
1909
1910/**
6a1aa64f
DV
1911 * Convert a JS date (millis since epoch) to YYYY/MM/DD
1912 * @param {Number} date The JavaScript date (ms since epoch)
1913 * @return {String} A date of the form "YYYY/MM/DD"
1914 * @private
1915 */
6be8e54c 1916Dygraph.dateString_ = function(date) {
285a6bda 1917 var zeropad = Dygraph.zeropad;
6a1aa64f
DV
1918 var d = new Date(date);
1919
1920 // Get the year:
1921 var year = "" + d.getFullYear();
1922 // Get a 0 padded month string
6b8e33dd 1923 var month = zeropad(d.getMonth() + 1); //months are 0-offset, sigh
6a1aa64f 1924 // Get a 0 padded day string
6b8e33dd 1925 var day = zeropad(d.getDate());
6a1aa64f 1926
6b8e33dd
DV
1927 var ret = "";
1928 var frac = d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
bf640e56 1929 if (frac) ret = " " + Dygraph.hmsString_(date);
6b8e33dd
DV
1930
1931 return year + "/" + month + "/" + day + ret;
6a1aa64f
DV
1932};
1933
1934/**
032e4c1d
DV
1935 * Round a number to the specified number of digits past the decimal point.
1936 * @param {Number} num The number to round
1937 * @param {Number} places The number of decimals to which to round
1938 * @return {Number} The rounded number
1939 * @private
1940 */
1941Dygraph.round_ = function(num, places) {
1942 var shift = Math.pow(10, places);
1943 return Math.round(num * shift)/shift;
1944};
1945
1946/**
6a1aa64f
DV
1947 * Fires when there's data available to be graphed.
1948 * @param {String} data Raw CSV data to be plotted
1949 * @private
1950 */
285a6bda 1951Dygraph.prototype.loadedEvent_ = function(data) {
6a1aa64f 1952 this.rawData_ = this.parseCSV_(data);
26ca7938 1953 this.predraw_();
6a1aa64f
DV
1954};
1955
285a6bda 1956Dygraph.prototype.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
8846615a 1957 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
285a6bda 1958Dygraph.prototype.quarters = ["Jan", "Apr", "Jul", "Oct"];
6a1aa64f
DV
1959
1960/**
1961 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
1962 * @private
1963 */
285a6bda 1964Dygraph.prototype.addXTicks_ = function() {
6a1aa64f 1965 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
7201b11e 1966 var range;
6a1aa64f 1967 if (this.dateWindow_) {
7201b11e 1968 range = [this.dateWindow_[0], this.dateWindow_[1]];
6a1aa64f 1969 } else {
7201b11e
JB
1970 range = [this.rawData_[0][0], this.rawData_[this.rawData_.length - 1][0]];
1971 }
1972
032e4c1d 1973 var xTicks = this.attr_('xTicker')(range[0], range[1], this);
7201b11e 1974 this.layout_.updateOptions({xTicks: xTicks});
32988383
DV
1975};
1976
1977// Time granularity enumeration
285a6bda 1978Dygraph.SECONDLY = 0;
20a41c17
DV
1979Dygraph.TWO_SECONDLY = 1;
1980Dygraph.FIVE_SECONDLY = 2;
1981Dygraph.TEN_SECONDLY = 3;
1982Dygraph.THIRTY_SECONDLY = 4;
1983Dygraph.MINUTELY = 5;
1984Dygraph.TWO_MINUTELY = 6;
1985Dygraph.FIVE_MINUTELY = 7;
1986Dygraph.TEN_MINUTELY = 8;
1987Dygraph.THIRTY_MINUTELY = 9;
1988Dygraph.HOURLY = 10;
1989Dygraph.TWO_HOURLY = 11;
1990Dygraph.SIX_HOURLY = 12;
1991Dygraph.DAILY = 13;
1992Dygraph.WEEKLY = 14;
1993Dygraph.MONTHLY = 15;
1994Dygraph.QUARTERLY = 16;
1995Dygraph.BIANNUAL = 17;
1996Dygraph.ANNUAL = 18;
1997Dygraph.DECADAL = 19;
062ef401
JB
1998Dygraph.CENTENNIAL = 20;
1999Dygraph.NUM_GRANULARITIES = 21;
285a6bda
DV
2000
2001Dygraph.SHORT_SPACINGS = [];
2002Dygraph.SHORT_SPACINGS[Dygraph.SECONDLY] = 1000 * 1;
20a41c17
DV
2003Dygraph.SHORT_SPACINGS[Dygraph.TWO_SECONDLY] = 1000 * 2;
2004Dygraph.SHORT_SPACINGS[Dygraph.FIVE_SECONDLY] = 1000 * 5;
285a6bda
DV
2005Dygraph.SHORT_SPACINGS[Dygraph.TEN_SECONDLY] = 1000 * 10;
2006Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_SECONDLY] = 1000 * 30;
2007Dygraph.SHORT_SPACINGS[Dygraph.MINUTELY] = 1000 * 60;
20a41c17
DV
2008Dygraph.SHORT_SPACINGS[Dygraph.TWO_MINUTELY] = 1000 * 60 * 2;
2009Dygraph.SHORT_SPACINGS[Dygraph.FIVE_MINUTELY] = 1000 * 60 * 5;
285a6bda
DV
2010Dygraph.SHORT_SPACINGS[Dygraph.TEN_MINUTELY] = 1000 * 60 * 10;
2011Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_MINUTELY] = 1000 * 60 * 30;
2012Dygraph.SHORT_SPACINGS[Dygraph.HOURLY] = 1000 * 3600;
20a41c17 2013Dygraph.SHORT_SPACINGS[Dygraph.TWO_HOURLY] = 1000 * 3600 * 2;
805d5519 2014Dygraph.SHORT_SPACINGS[Dygraph.SIX_HOURLY] = 1000 * 3600 * 6;
285a6bda
DV
2015Dygraph.SHORT_SPACINGS[Dygraph.DAILY] = 1000 * 86400;
2016Dygraph.SHORT_SPACINGS[Dygraph.WEEKLY] = 1000 * 604800;
32988383
DV
2017
2018// NumXTicks()
2019//
2020// If we used this time granularity, how many ticks would there be?
2021// This is only an approximation, but it's generally good enough.
2022//
285a6bda
DV
2023Dygraph.prototype.NumXTicks = function(start_time, end_time, granularity) {
2024 if (granularity < Dygraph.MONTHLY) {
32988383 2025 // Generate one tick mark for every fixed interval of time.
285a6bda 2026 var spacing = Dygraph.SHORT_SPACINGS[granularity];
32988383
DV
2027 return Math.floor(0.5 + 1.0 * (end_time - start_time) / spacing);
2028 } else {
2029 var year_mod = 1; // e.g. to only print one point every 10 years.
2030 var num_months = 12;
285a6bda
DV
2031 if (granularity == Dygraph.QUARTERLY) num_months = 3;
2032 if (granularity == Dygraph.BIANNUAL) num_months = 2;
2033 if (granularity == Dygraph.ANNUAL) num_months = 1;
2034 if (granularity == Dygraph.DECADAL) { num_months = 1; year_mod = 10; }
062ef401 2035 if (granularity == Dygraph.CENTENNIAL) { num_months = 1; year_mod = 100; }
32988383
DV
2036
2037 var msInYear = 365.2524 * 24 * 3600 * 1000;
2038 var num_years = 1.0 * (end_time - start_time) / msInYear;
2039 return Math.floor(0.5 + 1.0 * num_years * num_months / year_mod);
2040 }
2041};
2042
2043// GetXAxis()
2044//
2045// Construct an x-axis of nicely-formatted times on meaningful boundaries
2046// (e.g. 'Jan 09' rather than 'Jan 22, 2009').
2047//
2048// Returns an array containing {v: millis, label: label} dictionaries.
2049//
285a6bda 2050Dygraph.prototype.GetXAxis = function(start_time, end_time, granularity) {
bf640e56 2051 var formatter = this.attr_("xAxisLabelFormatter");
32988383 2052 var ticks = [];
285a6bda 2053 if (granularity < Dygraph.MONTHLY) {
32988383 2054 // Generate one tick mark for every fixed interval of time.
285a6bda 2055 var spacing = Dygraph.SHORT_SPACINGS[granularity];
3d29302c 2056 var format = '%d%b'; // e.g. "1Jan"
076c9622
DV
2057
2058 // Find a time less than start_time which occurs on a "nice" time boundary
2059 // for this granularity.
2060 var g = spacing / 1000;
076c9622
DV
2061 var d = new Date(start_time);
2062 if (g <= 60) { // seconds
2063 var x = d.getSeconds(); d.setSeconds(x - x % g);
2064 } else {
2065 d.setSeconds(0);
2066 g /= 60;
2067 if (g <= 60) { // minutes
2068 var x = d.getMinutes(); d.setMinutes(x - x % g);
2069 } else {
2070 d.setMinutes(0);
2071 g /= 60;
2072
2073 if (g <= 24) { // days
2074 var x = d.getHours(); d.setHours(x - x % g);
2075 } else {
2076 d.setHours(0);
2077 g /= 24;
2078
2079 if (g == 7) { // one week
20a41c17 2080 d.setDate(d.getDate() - d.getDay());
076c9622
DV
2081 }
2082 }
2083 }
328bb812 2084 }
076c9622
DV
2085 start_time = d.getTime();
2086
32988383 2087 for (var t = start_time; t <= end_time; t += spacing) {
bf640e56 2088 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
2089 }
2090 } else {
2091 // Display a tick mark on the first of a set of months of each year.
2092 // Years get a tick mark iff y % year_mod == 0. This is useful for
2093 // displaying a tick mark once every 10 years, say, on long time scales.
2094 var months;
2095 var year_mod = 1; // e.g. to only print one point every 10 years.
2096
285a6bda 2097 if (granularity == Dygraph.MONTHLY) {
32988383 2098 months = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
285a6bda 2099 } else if (granularity == Dygraph.QUARTERLY) {
32988383 2100 months = [ 0, 3, 6, 9 ];
285a6bda 2101 } else if (granularity == Dygraph.BIANNUAL) {
32988383 2102 months = [ 0, 6 ];
285a6bda 2103 } else if (granularity == Dygraph.ANNUAL) {
32988383 2104 months = [ 0 ];
285a6bda 2105 } else if (granularity == Dygraph.DECADAL) {
32988383
DV
2106 months = [ 0 ];
2107 year_mod = 10;
062ef401
JB
2108 } else if (granularity == Dygraph.CENTENNIAL) {
2109 months = [ 0 ];
2110 year_mod = 100;
2111 } else {
2112 this.warn("Span of dates is too long");
32988383
DV
2113 }
2114
2115 var start_year = new Date(start_time).getFullYear();
2116 var end_year = new Date(end_time).getFullYear();
285a6bda 2117 var zeropad = Dygraph.zeropad;
32988383
DV
2118 for (var i = start_year; i <= end_year; i++) {
2119 if (i % year_mod != 0) continue;
2120 for (var j = 0; j < months.length; j++) {
2121 var date_str = i + "/" + zeropad(1 + months[j]) + "/01";
d96b7d1a 2122 var t = Dygraph.dateStrToMillis(date_str);
32988383 2123 if (t < start_time || t > end_time) continue;
bf640e56 2124 ticks.push({ v:t, label: formatter(new Date(t), granularity) });
32988383
DV
2125 }
2126 }
2127 }
2128
2129 return ticks;
2130};
2131
6a1aa64f
DV
2132
2133/**
2134 * Add ticks to the x-axis based on a date range.
2135 * @param {Number} startDate Start of the date window (millis since epoch)
2136 * @param {Number} endDate End of the date window (millis since epoch)
2137 * @return {Array.<Object>} Array of {label, value} tuples.
2138 * @public
2139 */
285a6bda 2140Dygraph.dateTicker = function(startDate, endDate, self) {
32988383 2141 var chosen = -1;
285a6bda
DV
2142 for (var i = 0; i < Dygraph.NUM_GRANULARITIES; i++) {
2143 var num_ticks = self.NumXTicks(startDate, endDate, i);
2144 if (self.width_ / num_ticks >= self.attr_('pixelsPerXLabel')) {
32988383
DV
2145 chosen = i;
2146 break;
2769de62 2147 }
6a1aa64f
DV
2148 }
2149
32988383 2150 if (chosen >= 0) {
285a6bda 2151 return self.GetXAxis(startDate, endDate, chosen);
6a1aa64f 2152 } else {
32988383 2153 // TODO(danvk): signal error.
6a1aa64f 2154 }
6a1aa64f
DV
2155};
2156
c1bc242a
DV
2157// This is a list of human-friendly values at which to show tick marks on a log
2158// scale. It is k * 10^n, where k=1..9 and n=-39..+39, so:
2159// ..., 1, 2, 3, 4, 5, ..., 9, 10, 20, 30, ..., 90, 100, 200, 300, ...
5db0e241 2160// NOTE: this assumes that Dygraph.LOG_SCALE = 10.
0cfa06d1 2161Dygraph.PREFERRED_LOG_TICK_VALUES = function() {
6821efbe
RK
2162 var vals = [];
2163 for (var power = -39; power <= 39; power++) {
2164 var range = Math.pow(10, power);
4b467120
RK
2165 for (var mult = 1; mult <= 9; mult++) {
2166 var val = range * mult;
6821efbe
RK
2167 vals.push(val);
2168 }
2169 }
2170 return vals;
2171}();
2172
0cfa06d1
RK
2173// val is the value to search for
2174// arry is the value over which to search
2175// if abs > 0, find the lowest entry greater than val
2176// if abs < 0, find the highest entry less than val
2177// if abs == 0, find the entry that equals val.
2178// Currently does not work when val is outside the range of arry's values.
2179Dygraph.binarySearch = function(val, arry, abs, low, high) {
2180 if (low == null || high == null) {
2181 low = 0;
2182 high = arry.length - 1;
2183 }
2184 if (low > high) {
2185 return -1;
2186 }
2187 if (abs == null) {
2188 abs = 0;
2189 }
2190 var validIndex = function(idx) {
2191 return idx >= 0 && idx < arry.length;
2192 }
2193 var mid = parseInt((low + high) / 2);
2194 var element = arry[mid];
2195 if (element == val) {
2196 return mid;
2197 }
2198 if (element > val) {
2199 if (abs > 0) {
2200 // Accept if element > val, but also if prior element < val.
2201 var idx = mid - 1;
2202 if (validIndex(idx) && arry[idx] < val) {
2203 return mid;
2204 }
2205 }
c1bc242a 2206 return Dygraph.binarySearch(val, arry, abs, low, mid - 1);
0cfa06d1
RK
2207 }
2208 if (element < val) {
2209 if (abs < 0) {
2210 // Accept if element < val, but also if prior element > val.
2211 var idx = mid + 1;
2212 if (validIndex(idx) && arry[idx] > val) {
2213 return mid;
2214 }
2215 }
2216 return Dygraph.binarySearch(val, arry, abs, mid + 1, high);
2217 }
60a19014 2218};
0cfa06d1 2219
6a1aa64f
DV
2220/**
2221 * Add ticks when the x axis has numbers on it (instead of dates)
ff022deb
RK
2222 * TODO(konigsberg): Update comment.
2223 *
7d0e7a0d
RK
2224 * @param {Number} minV minimum value
2225 * @param {Number} maxV maximum value
84fc6aa7 2226 * @param self
f30cf740 2227 * @param {function} attribute accessor function.
6a1aa64f
DV
2228 * @return {Array.<Object>} Array of {label, value} tuples.
2229 * @public
2230 */
0d64e596 2231Dygraph.numericTicks = function(minV, maxV, self, axis_props, vals) {
70c80071
DV
2232 var attr = function(k) {
2233 if (axis_props && axis_props.hasOwnProperty(k)) return axis_props[k];
2234 return self.attr_(k);
2235 };
f09fc545 2236
0d64e596
DV
2237 var ticks = [];
2238 if (vals) {
2239 for (var i = 0; i < vals.length; i++) {
e863a17d 2240 ticks.push({v: vals[i]});
0d64e596 2241 }
f09e46d4 2242 } else {
7d0e7a0d 2243 if (axis_props && attr("logscale")) {
ff022deb 2244 var pixelsPerTick = attr('pixelsPerYLabel');
7d0e7a0d 2245 // NOTE(konigsberg): Dan, should self.height_ be self.plotter_.area.h?
ff022deb 2246 var nTicks = Math.floor(self.height_ / pixelsPerTick);
0cfa06d1
RK
2247 var minIdx = Dygraph.binarySearch(minV, Dygraph.PREFERRED_LOG_TICK_VALUES, 1);
2248 var maxIdx = Dygraph.binarySearch(maxV, Dygraph.PREFERRED_LOG_TICK_VALUES, -1);
2249 if (minIdx == -1) {
6821efbe
RK
2250 minIdx = 0;
2251 }
0cfa06d1
RK
2252 if (maxIdx == -1) {
2253 maxIdx = Dygraph.PREFERRED_LOG_TICK_VALUES.length - 1;
6821efbe 2254 }
0cfa06d1
RK
2255 // Count the number of tick values would appear, if we can get at least
2256 // nTicks / 4 accept them.
00aa7f61 2257 var lastDisplayed = null;
0cfa06d1 2258 if (maxIdx - minIdx >= nTicks / 4) {
00aa7f61 2259 var axisId = axis_props.yAxisId;
0cfa06d1
RK
2260 for (var idx = maxIdx; idx >= minIdx; idx--) {
2261 var tickValue = Dygraph.PREFERRED_LOG_TICK_VALUES[idx];
00aa7f61
RK
2262 var domCoord = axis_props.g.toDomYCoord(tickValue, axisId);
2263 var tick = { v: tickValue };
2264 if (lastDisplayed == null) {
2265 lastDisplayed = {
2266 tickValue : tickValue,
2267 domCoord : domCoord
2268 };
2269 } else {
2270 if (domCoord - lastDisplayed.domCoord >= pixelsPerTick) {
2271 lastDisplayed = {
2272 tickValue : tickValue,
2273 domCoord : domCoord
2274 };
2275 } else {
c1bc242a 2276 tick.label = "";
00aa7f61
RK
2277 }
2278 }
2279 ticks.push(tick);
6821efbe 2280 }
0cfa06d1
RK
2281 // Since we went in backwards order.
2282 ticks.reverse();
6821efbe 2283 }
f09e46d4 2284 }
c1bc242a 2285
6821efbe
RK
2286 // ticks.length won't be 0 if the log scale function finds values to insert.
2287 if (ticks.length == 0) {
ff022deb
RK
2288 // Basic idea:
2289 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
2290 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks).
2291 // The first spacing greater than pixelsPerYLabel is what we use.
2292 // TODO(danvk): version that works on a log scale.
0d64e596 2293 if (attr("labelsKMG2")) {
ff022deb 2294 var mults = [1, 2, 4, 8];
0d64e596 2295 } else {
ff022deb 2296 var mults = [1, 2, 5];
0d64e596 2297 }
ff022deb
RK
2298 var scale, low_val, high_val, nTicks;
2299 // TODO(danvk): make it possible to set this for x- and y-axes independently.
2300 var pixelsPerTick = attr('pixelsPerYLabel');
2301 for (var i = -10; i < 50; i++) {
2302 if (attr("labelsKMG2")) {
2303 var base_scale = Math.pow(16, i);
2304 } else {
2305 var base_scale = Math.pow(10, i);
2306 }
2307 for (var j = 0; j < mults.length; j++) {
2308 scale = base_scale * mults[j];
2309 low_val = Math.floor(minV / scale) * scale;
2310 high_val = Math.ceil(maxV / scale) * scale;
2311 nTicks = Math.abs(high_val - low_val) / scale;
2312 var spacing = self.height_ / nTicks;
2313 // wish I could break out of both loops at once...
2314 if (spacing > pixelsPerTick) break;
2315 }
0d64e596
DV
2316 if (spacing > pixelsPerTick) break;
2317 }
0d64e596 2318
ff022deb
RK
2319 // Construct the set of ticks.
2320 // Allow reverse y-axis if it's explicitly requested.
2321 if (low_val > high_val) scale *= -1;
2322 for (var i = 0; i < nTicks; i++) {
2323 var tickV = low_val + i * scale;
2324 ticks.push( {v: tickV} );
2325 }
0d64e596 2326 }
6a1aa64f
DV
2327 }
2328
0d64e596 2329 // Add formatted labels to the ticks.
ed11be50
DV
2330 var k;
2331 var k_labels = [];
f09fc545 2332 if (attr("labelsKMB")) {
ed11be50
DV
2333 k = 1000;
2334 k_labels = [ "K", "M", "B", "T" ];
2335 }
f09fc545 2336 if (attr("labelsKMG2")) {
ed11be50
DV
2337 if (k) self.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
2338 k = 1024;
2339 k_labels = [ "k", "M", "G", "T" ];
2340 }
3c1d225b
JB
2341 var formatter = attr('yAxisLabelFormatter') ?
2342 attr('yAxisLabelFormatter') : attr('yValueFormatter');
2343
0cfa06d1 2344 // Add labels to the ticks.
0d64e596 2345 for (var i = 0; i < ticks.length; i++) {
e863a17d 2346 if (ticks[i].label !== undefined) continue; // Use current label.
0d64e596 2347 var tickV = ticks[i].v;
0af6e346 2348 var absTickV = Math.abs(tickV);
2e1fcf1a 2349 var label = formatter(tickV, self);
3c1d225b 2350 if (k_labels.length > 0) {
ed11be50
DV
2351 // Round up to an appropriate unit.
2352 var n = k*k*k*k;
2353 for (var j = 3; j >= 0; j--, n /= k) {
2354 if (absTickV >= n) {
032e4c1d 2355 label = Dygraph.round_(tickV / n, 1) + k_labels[j];
ed11be50
DV
2356 break;
2357 }
afefbcdb 2358 }
6a1aa64f 2359 }
d916677a 2360 ticks[i].label = label;
6a1aa64f 2361 }
d916677a 2362
032e4c1d 2363 return ticks;
6a1aa64f
DV
2364};
2365
5011e7a1
DV
2366// Computes the range of the data series (including confidence intervals).
2367// series is either [ [x1, y1], [x2, y2], ... ] or
2368// [ [x1, [y1, dev_low, dev_high]], [x2, [y2, dev_low, dev_high]], ...
2369// Returns [low, high]
2370Dygraph.prototype.extremeValues_ = function(series) {
2371 var minY = null, maxY = null;
2372
9922b78b 2373 var bars = this.attr_("errorBars") || this.attr_("customBars");
5011e7a1
DV
2374 if (bars) {
2375 // With custom bars, maxY is the max of the high values.
2376 for (var j = 0; j < series.length; j++) {
2377 var y = series[j][1][0];
2378 if (!y) continue;
2379 var low = y - series[j][1][1];
2380 var high = y + series[j][1][2];
2381 if (low > y) low = y; // this can happen with custom bars,
2382 if (high < y) high = y; // e.g. in tests/custom-bars.html
2383 if (maxY == null || high > maxY) {
2384 maxY = high;
2385 }
2386 if (minY == null || low < minY) {
2387 minY = low;
2388 }
2389 }
2390 } else {
2391 for (var j = 0; j < series.length; j++) {
2392 var y = series[j][1];
d12999d3 2393 if (y === null || isNaN(y)) continue;
5011e7a1
DV
2394 if (maxY == null || y > maxY) {
2395 maxY = y;
2396 }
2397 if (minY == null || y < minY) {
2398 minY = y;
2399 }
2400 }
2401 }
2402
2403 return [minY, maxY];
2404};
2405
6a1aa64f 2406/**
26ca7938
DV
2407 * This function is called once when the chart's data is changed or the options
2408 * dictionary is updated. It is _not_ called when the user pans or zooms. The
2409 * idea is that values derived from the chart's data can be computed here,
2410 * rather than every time the chart is drawn. This includes things like the
2411 * number of axes, rolling averages, etc.
2412 */
2413Dygraph.prototype.predraw_ = function() {
2414 // TODO(danvk): move more computations out of drawGraph_ and into here.
2415 this.computeYAxes_();
2416
2417 // Create a new plotter.
70c80071 2418 if (this.plotter_) this.plotter_.clear();
26ca7938
DV
2419 this.plotter_ = new DygraphCanvasRenderer(this,
2420 this.hidden_, this.layout_,
2421 this.renderOptions_);
2422
0abfbd7e
DV
2423 // The roller sits in the bottom left corner of the chart. We don't know where
2424 // this will be until the options are available, so it's positioned here.
8c69de65 2425 this.createRollInterface_();
26ca7938 2426
0abfbd7e
DV
2427 // Same thing applies for the labelsDiv. It's right edge should be flush with
2428 // the right edge of the charting area (which may not be the same as the right
2429 // edge of the div, if we have two y-axes.
2430 this.positionLabelsDiv_();
2431
26ca7938
DV
2432 // If the data or options have changed, then we'd better redraw.
2433 this.drawGraph_();
2434};
2435
2436/**
2437 * Update the graph with new data. This method is called when the viewing area
2438 * has changed. If the underlying data or options have changed, predraw_ will
2439 * be called before drawGraph_ is called.
6a1aa64f
DV
2440 * @private
2441 */
26ca7938
DV
2442Dygraph.prototype.drawGraph_ = function() {
2443 var data = this.rawData_;
2444
fe0b7c03
DV
2445 // This is used to set the second parameter to drawCallback, below.
2446 var is_initial_draw = this.is_initial_draw_;
2447 this.is_initial_draw_ = false;
2448
3bd9c228 2449 var minY = null, maxY = null;
6a1aa64f 2450 this.layout_.removeAllDatasets();
285a6bda 2451 this.setColors_();
9317362d 2452 this.attrs_['pointSize'] = 0.5 * this.attr_('highlightCircleSize');
285a6bda 2453
354e15ab
DE
2454 // Loop over the fields (series). Go from the last to the first,
2455 // because if they're stacked that's how we accumulate the values.
43af96e7 2456
354e15ab
DE
2457 var cumulative_y = []; // For stacked series.
2458 var datasets = [];
2459
f09fc545
DV
2460 var extremes = {}; // series name -> [low, high]
2461
354e15ab
DE
2462 // Loop over all fields and create datasets
2463 for (var i = data[0].length - 1; i >= 1; i--) {
1cf11047
DV
2464 if (!this.visibility()[i - 1]) continue;
2465
f09fc545 2466 var seriesName = this.attr_("labels")[i];
450fe64b 2467 var connectSeparatedPoints = this.attr_('connectSeparatedPoints', i);
6e6a2b0a 2468 var logScale = this.attr_('logscale', i);
450fe64b 2469
6a1aa64f
DV
2470 var series = [];
2471 for (var j = 0; j < data.length; j++) {
6e6a2b0a
RK
2472 var date = data[j][0];
2473 var point = data[j][i];
2474 if (logScale) {
2475 // On the log scale, points less than zero do not exist.
2476 // This will create a gap in the chart. Note that this ignores
2477 // connectSeparatedPoints.
e863a17d 2478 if (point <= 0) {
6e6a2b0a
RK
2479 point = null;
2480 }
2481 series.push([date, point]);
2482 } else {
2483 if (point != null || !connectSeparatedPoints) {
2484 series.push([date, point]);
2485 }
f032c51d 2486 }
6a1aa64f 2487 }
2f5e7e1a
DV
2488
2489 // TODO(danvk): move this into predraw_. It's insane to do it here.
6a1aa64f
DV
2490 series = this.rollingAverage(series, this.rollPeriod_);
2491
2492 // Prune down to the desired range, if necessary (for zooming)
1a26f3fb
DV
2493 // Because there can be lines going to points outside of the visible area,
2494 // we actually prune to visible points, plus one on either side.
9922b78b 2495 var bars = this.attr_("errorBars") || this.attr_("customBars");
6a1aa64f
DV
2496 if (this.dateWindow_) {
2497 var low = this.dateWindow_[0];
2498 var high= this.dateWindow_[1];
2499 var pruned = [];
1a26f3fb
DV
2500 // TODO(danvk): do binary search instead of linear search.
2501 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
2502 var firstIdx = null, lastIdx = null;
6a1aa64f 2503 for (var k = 0; k < series.length; k++) {
1a26f3fb
DV
2504 if (series[k][0] >= low && firstIdx === null) {
2505 firstIdx = k;
2506 }
2507 if (series[k][0] <= high) {
2508 lastIdx = k;
6a1aa64f
DV
2509 }
2510 }
1a26f3fb
DV
2511 if (firstIdx === null) firstIdx = 0;
2512 if (firstIdx > 0) firstIdx--;
2513 if (lastIdx === null) lastIdx = series.length - 1;
2514 if (lastIdx < series.length - 1) lastIdx++;
16269f6e 2515 this.boundaryIds_[i-1] = [firstIdx, lastIdx];
1a26f3fb
DV
2516 for (var k = firstIdx; k <= lastIdx; k++) {
2517 pruned.push(series[k]);
6a1aa64f
DV
2518 }
2519 series = pruned;
16269f6e
NAG
2520 } else {
2521 this.boundaryIds_[i-1] = [0, series.length-1];
6a1aa64f
DV
2522 }
2523
f09fc545 2524 var seriesExtremes = this.extremeValues_(series);
5011e7a1 2525
6a1aa64f 2526 if (bars) {
354e15ab
DE
2527 for (var j=0; j<series.length; j++) {
2528 val = [series[j][0], series[j][1][0], series[j][1][1], series[j][1][2]];
2529 series[j] = val;
2530 }
43af96e7 2531 } else if (this.attr_("stackedGraph")) {
43af96e7
NK
2532 var l = series.length;
2533 var actual_y;
2534 for (var j = 0; j < l; j++) {
354e15ab
DE
2535 // If one data set has a NaN, let all subsequent stacked
2536 // sets inherit the NaN -- only start at 0 for the first set.
2537 var x = series[j][0];
41b0f691 2538 if (cumulative_y[x] === undefined) {
354e15ab 2539 cumulative_y[x] = 0;
41b0f691 2540 }
43af96e7
NK
2541
2542 actual_y = series[j][1];
354e15ab 2543 cumulative_y[x] += actual_y;
43af96e7 2544
354e15ab 2545 series[j] = [x, cumulative_y[x]]
43af96e7 2546
41b0f691
DV
2547 if (cumulative_y[x] > seriesExtremes[1]) {
2548 seriesExtremes[1] = cumulative_y[x];
2549 }
2550 if (cumulative_y[x] < seriesExtremes[0]) {
2551 seriesExtremes[0] = cumulative_y[x];
2552 }
43af96e7 2553 }
6a1aa64f 2554 }
41b0f691 2555 extremes[seriesName] = seriesExtremes;
354e15ab
DE
2556
2557 datasets[i] = series;
6a1aa64f
DV
2558 }
2559
354e15ab 2560 for (var i = 1; i < datasets.length; i++) {
4523c1f6 2561 if (!this.visibility()[i - 1]) continue;
354e15ab 2562 this.layout_.addDataset(this.attr_("labels")[i], datasets[i]);
43af96e7
NK
2563 }
2564
6faebb69
JB
2565 this.computeYAxisRanges_(extremes);
2566 this.layout_.updateOptions( { yAxes: this.axes_,
2567 seriesToAxisMap: this.seriesToAxisMap_
9012dd21 2568 } );
6a1aa64f
DV
2569 this.addXTicks_();
2570
81856f70
NN
2571 // Save the X axis zoomed status as the updateOptions call will tend to set it errorneously
2572 var tmp_zoomed_x = this.zoomed_x_;
6a1aa64f 2573 // Tell PlotKit to use this new data and render itself
d033ae1c 2574 this.layout_.updateOptions({dateWindow: this.dateWindow_});
81856f70 2575 this.zoomed_x_ = tmp_zoomed_x;
6a1aa64f
DV
2576 this.layout_.evaluateWithError();
2577 this.plotter_.clear();
2578 this.plotter_.render();
f6401bf6 2579 this.canvas_.getContext('2d').clearRect(0, 0, this.canvas_.width,
2f5e7e1a 2580 this.canvas_.height);
599fb4ad 2581
2fccd3dc
DV
2582 if (is_initial_draw) {
2583 // Generate a static legend before any particular point is selected.
2584 this.attr_('labelsDiv').innerHTML = this.generateLegendHTML_();
06303c32
DV
2585 } else {
2586 if (typeof(this.selPoints_) !== 'undefined' && this.selPoints_.length) {
2587 this.lastx_ = this.selPoints_[0].xval;
2588 this.updateSelection_();
2589 } else {
2590 this.clearSelection();
2591 }
2fccd3dc
DV
2592 }
2593
599fb4ad 2594 if (this.attr_("drawCallback") !== null) {
fe0b7c03 2595 this.attr_("drawCallback")(this, is_initial_draw);
599fb4ad 2596 }
6a1aa64f
DV
2597};
2598
2599/**
26ca7938
DV
2600 * Determine properties of the y-axes which are independent of the data
2601 * currently being displayed. This includes things like the number of axes and
2602 * the style of the axes. It does not include the range of each axis and its
2603 * tick marks.
2604 * This fills in this.axes_ and this.seriesToAxisMap_.
2605 * axes_ = [ { options } ]
2606 * seriesToAxisMap_ = { seriesName: 0, seriesName2: 1, ... }
2607 * indices are into the axes_ array.
f09fc545 2608 */
26ca7938 2609Dygraph.prototype.computeYAxes_ = function() {
81856f70 2610 var valueWindows;
45f2c689
NN
2611 if (this.axes_ != undefined) {
2612 // Preserve valueWindow settings.
81856f70 2613 valueWindows = [];
45f2c689 2614 for (var index = 0; index < this.axes_.length; index++) {
81856f70 2615 valueWindows.push(this.axes_[index].valueWindow);
45f2c689
NN
2616 }
2617 }
2618
00aa7f61 2619 this.axes_ = [{ yAxisId : 0, g : this }]; // always have at least one y-axis.
26ca7938
DV
2620 this.seriesToAxisMap_ = {};
2621
2622 // Get a list of series names.
2623 var labels = this.attr_("labels");
1c77a3a1 2624 var series = {};
26ca7938 2625 for (var i = 1; i < labels.length; i++) series[labels[i]] = (i - 1);
f09fc545
DV
2626
2627 // all options which could be applied per-axis:
2628 var axisOptions = [
2629 'includeZero',
2630 'valueRange',
2631 'labelsKMB',
2632 'labelsKMG2',
2633 'pixelsPerYLabel',
2634 'yAxisLabelWidth',
2635 'axisLabelFontSize',
7d0e7a0d
RK
2636 'axisTickSize',
2637 'logscale'
f09fc545
DV
2638 ];
2639
2640 // Copy global axis options over to the first axis.
2641 for (var i = 0; i < axisOptions.length; i++) {
2642 var k = axisOptions[i];
2643 var v = this.attr_(k);
26ca7938 2644 if (v) this.axes_[0][k] = v;
f09fc545
DV
2645 }
2646
2647 // Go through once and add all the axes.
26ca7938
DV
2648 for (var seriesName in series) {
2649 if (!series.hasOwnProperty(seriesName)) continue;
f09fc545
DV
2650 var axis = this.attr_("axis", seriesName);
2651 if (axis == null) {
26ca7938 2652 this.seriesToAxisMap_[seriesName] = 0;
f09fc545
DV
2653 continue;
2654 }
2655 if (typeof(axis) == 'object') {
2656 // Add a new axis, making a copy of its per-axis options.
2657 var opts = {};
26ca7938 2658 Dygraph.update(opts, this.axes_[0]);
f09fc545 2659 Dygraph.update(opts, { valueRange: null }); // shouldn't inherit this.
00aa7f61
RK
2660 var yAxisId = this.axes_.length;
2661 opts.yAxisId = yAxisId;
2662 opts.g = this;
f09fc545 2663 Dygraph.update(opts, axis);
26ca7938 2664 this.axes_.push(opts);
00aa7f61 2665 this.seriesToAxisMap_[seriesName] = yAxisId;
f09fc545
DV
2666 }
2667 }
2668
2669 // Go through one more time and assign series to an axis defined by another
2670 // series, e.g. { 'Y1: { axis: {} }, 'Y2': { axis: 'Y1' } }
26ca7938
DV
2671 for (var seriesName in series) {
2672 if (!series.hasOwnProperty(seriesName)) continue;
f09fc545
DV
2673 var axis = this.attr_("axis", seriesName);
2674 if (typeof(axis) == 'string') {
26ca7938 2675 if (!this.seriesToAxisMap_.hasOwnProperty(axis)) {
f09fc545
DV
2676 this.error("Series " + seriesName + " wants to share a y-axis with " +
2677 "series " + axis + ", which does not define its own axis.");
2678 return null;
2679 }
26ca7938
DV
2680 var idx = this.seriesToAxisMap_[axis];
2681 this.seriesToAxisMap_[seriesName] = idx;
f09fc545
DV
2682 }
2683 }
1c77a3a1
DV
2684
2685 // Now we remove series from seriesToAxisMap_ which are not visible. We do
2686 // this last so that hiding the first series doesn't destroy the axis
2687 // properties of the primary axis.
2688 var seriesToAxisFiltered = {};
2689 var vis = this.visibility();
2690 for (var i = 1; i < labels.length; i++) {
2691 var s = labels[i];
2692 if (vis[i - 1]) seriesToAxisFiltered[s] = this.seriesToAxisMap_[s];
2693 }
2694 this.seriesToAxisMap_ = seriesToAxisFiltered;
45f2c689 2695
81856f70 2696 if (valueWindows != undefined) {
45f2c689 2697 // Restore valueWindow settings.
81856f70
NN
2698 for (var index = 0; index < valueWindows.length; index++) {
2699 this.axes_[index].valueWindow = valueWindows[index];
45f2c689
NN
2700 }
2701 }
26ca7938
DV
2702};
2703
2704/**
2705 * Returns the number of y-axes on the chart.
2706 * @return {Number} the number of axes.
2707 */
2708Dygraph.prototype.numAxes = function() {
2709 var last_axis = 0;
2710 for (var series in this.seriesToAxisMap_) {
2711 if (!this.seriesToAxisMap_.hasOwnProperty(series)) continue;
2712 var idx = this.seriesToAxisMap_[series];
2713 if (idx > last_axis) last_axis = idx;
2714 }
2715 return 1 + last_axis;
2716};
2717
2718/**
2719 * Determine the value range and tick marks for each axis.
2720 * @param {Object} extremes A mapping from seriesName -> [low, high]
2721 * This fills in the valueRange and ticks fields in each entry of this.axes_.
2722 */
2723Dygraph.prototype.computeYAxisRanges_ = function(extremes) {
2724 // Build a map from axis number -> [list of series names]
2725 var seriesForAxis = [];
2726 for (var series in this.seriesToAxisMap_) {
2727 if (!this.seriesToAxisMap_.hasOwnProperty(series)) continue;
2728 var idx = this.seriesToAxisMap_[series];
2729 while (seriesForAxis.length <= idx) seriesForAxis.push([]);
2730 seriesForAxis[idx].push(series);
2731 }
f09fc545
DV
2732
2733 // Compute extreme values, a span and tick marks for each axis.
26ca7938
DV
2734 for (var i = 0; i < this.axes_.length; i++) {
2735 var axis = this.axes_[i];
4cac8c7a 2736
06fc69b6
AV
2737 if (!seriesForAxis[i]) {
2738 // If no series are defined or visible then use a reasonable default
2739 axis.extremeRange = [0, 1];
2740 } else {
1c77a3a1 2741 // Calculate the extremes of extremes.
f09fc545
DV
2742 var series = seriesForAxis[i];
2743 var minY = Infinity; // extremes[series[0]][0];
2744 var maxY = -Infinity; // extremes[series[0]][1];
ba049b89 2745 var extremeMinY, extremeMaxY;
f09fc545 2746 for (var j = 0; j < series.length; j++) {
ba049b89
NN
2747 // Only use valid extremes to stop null data series' from corrupting the scale.
2748 extremeMinY = extremes[series[j]][0];
2749 if (extremeMinY != null) {
36dfa958 2750 minY = Math.min(extremeMinY, minY);
ba049b89
NN
2751 }
2752 extremeMaxY = extremes[series[j]][1];
2753 if (extremeMaxY != null) {
36dfa958 2754 maxY = Math.max(extremeMaxY, maxY);
ba049b89 2755 }
f09fc545
DV
2756 }
2757 if (axis.includeZero && minY > 0) minY = 0;
2758
ba049b89 2759 // Ensure we have a valid scale, otherwise defualt to zero for safety.
36dfa958
DV
2760 if (minY == Infinity) minY = 0;
2761 if (maxY == -Infinity) maxY = 0;
ba049b89 2762
f09fc545
DV
2763 // Add some padding and round up to an integer to be human-friendly.
2764 var span = maxY - minY;
2765 // special case: if we have no sense of scale, use +/-10% of the sole value.
2766 if (span == 0) { span = maxY; }
f09fc545 2767
ff022deb
RK
2768 var maxAxisY;
2769 var minAxisY;
7d0e7a0d 2770 if (axis.logscale) {
ff022deb
RK
2771 var maxAxisY = maxY + 0.1 * span;
2772 var minAxisY = minY;
2773 } else {
2774 var maxAxisY = maxY + 0.1 * span;
2775 var minAxisY = minY - 0.1 * span;
f09fc545 2776
ff022deb
RK
2777 // Try to include zero and make it minAxisY (or maxAxisY) if it makes sense.
2778 if (!this.attr_("avoidMinZero")) {
2779 if (minAxisY < 0 && minY >= 0) minAxisY = 0;
2780 if (maxAxisY > 0 && maxY <= 0) maxAxisY = 0;
2781 }
f09fc545 2782
ff022deb
RK
2783 if (this.attr_("includeZero")) {
2784 if (maxY < 0) maxAxisY = 0;
2785 if (minY > 0) minAxisY = 0;
2786 }
f09fc545 2787 }
4cac8c7a
RK
2788 axis.extremeRange = [minAxisY, maxAxisY];
2789 }
2790 if (axis.valueWindow) {
2791 // This is only set if the user has zoomed on the y-axis. It is never set
2792 // by a user. It takes precedence over axis.valueRange because, if you set
2793 // valueRange, you'd still expect to be able to pan.
2794 axis.computedValueRange = [axis.valueWindow[0], axis.valueWindow[1]];
2795 } else if (axis.valueRange) {
2796 // This is a user-set value range for this axis.
2797 axis.computedValueRange = [axis.valueRange[0], axis.valueRange[1]];
2798 } else {
2799 axis.computedValueRange = axis.extremeRange;
f09fc545
DV
2800 }
2801
0d64e596
DV
2802 // Add ticks. By default, all axes inherit the tick positions of the
2803 // primary axis. However, if an axis is specifically marked as having
2804 // independent ticks, then that is permissible as well.
2805 if (i == 0 || axis.independentTicks) {
032e4c1d 2806 axis.ticks =
0d64e596
DV
2807 Dygraph.numericTicks(axis.computedValueRange[0],
2808 axis.computedValueRange[1],
2809 this,
2810 axis);
2811 } else {
2812 var p_axis = this.axes_[0];
2813 var p_ticks = p_axis.ticks;
2814 var p_scale = p_axis.computedValueRange[1] - p_axis.computedValueRange[0];
2815 var scale = axis.computedValueRange[1] - axis.computedValueRange[0];
2816 var tick_values = [];
2817 for (var i = 0; i < p_ticks.length; i++) {
2818 var y_frac = (p_ticks[i].v - p_axis.computedValueRange[0]) / p_scale;
2819 var y_val = axis.computedValueRange[0] + y_frac * scale;
2820 tick_values.push(y_val);
2821 }
2822
032e4c1d 2823 axis.ticks =
0d64e596
DV
2824 Dygraph.numericTicks(axis.computedValueRange[0],
2825 axis.computedValueRange[1],
2826 this, axis, tick_values);
2827 }
f09fc545 2828 }
f09fc545
DV
2829};
2830
2831/**
6a1aa64f
DV
2832 * Calculates the rolling average of a data set.
2833 * If originalData is [label, val], rolls the average of those.
2834 * If originalData is [label, [, it's interpreted as [value, stddev]
2835 * and the roll is returned in the same form, with appropriately reduced
2836 * stddev for each value.
2837 * Note that this is where fractional input (i.e. '5/10') is converted into
2838 * decimal values.
2839 * @param {Array} originalData The data in the appropriate format (see above)
6faebb69
JB
2840 * @param {Number} rollPeriod The number of points over which to average the
2841 * data
6a1aa64f 2842 */
285a6bda 2843Dygraph.prototype.rollingAverage = function(originalData, rollPeriod) {
6a1aa64f
DV
2844 if (originalData.length < 2)
2845 return originalData;
2846 var rollPeriod = Math.min(rollPeriod, originalData.length - 1);
2847 var rollingData = [];
285a6bda 2848 var sigma = this.attr_("sigma");
6a1aa64f
DV
2849
2850 if (this.fractions_) {
2851 var num = 0;
2852 var den = 0; // numerator/denominator
2853 var mult = 100.0;
2854 for (var i = 0; i < originalData.length; i++) {
2855 num += originalData[i][1][0];
2856 den += originalData[i][1][1];
2857 if (i - rollPeriod >= 0) {
2858 num -= originalData[i - rollPeriod][1][0];
2859 den -= originalData[i - rollPeriod][1][1];
2860 }
2861
2862 var date = originalData[i][0];
2863 var value = den ? num / den : 0.0;
285a6bda 2864 if (this.attr_("errorBars")) {
6a1aa64f
DV
2865 if (this.wilsonInterval_) {
2866 // For more details on this confidence interval, see:
2867 // http://en.wikipedia.org/wiki/Binomial_confidence_interval
2868 if (den) {
2869 var p = value < 0 ? 0 : value, n = den;
2870 var pm = sigma * Math.sqrt(p*(1-p)/n + sigma*sigma/(4*n*n));
2871 var denom = 1 + sigma * sigma / den;
2872 var low = (p + sigma * sigma / (2 * den) - pm) / denom;
2873 var high = (p + sigma * sigma / (2 * den) + pm) / denom;
2874 rollingData[i] = [date,
2875 [p * mult, (p - low) * mult, (high - p) * mult]];
2876 } else {
2877 rollingData[i] = [date, [0, 0, 0]];
2878 }
2879 } else {
2880 var stddev = den ? sigma * Math.sqrt(value * (1 - value) / den) : 1.0;
2881 rollingData[i] = [date, [mult * value, mult * stddev, mult * stddev]];
2882 }
2883 } else {
2884 rollingData[i] = [date, mult * value];
2885 }
2886 }
9922b78b 2887 } else if (this.attr_("customBars")) {
f6885d6a
DV
2888 var low = 0;
2889 var mid = 0;
2890 var high = 0;
2891 var count = 0;
6a1aa64f
DV
2892 for (var i = 0; i < originalData.length; i++) {
2893 var data = originalData[i][1];
2894 var y = data[1];
2895 rollingData[i] = [originalData[i][0], [y, y - data[0], data[2] - y]];
f6885d6a 2896
8b91c51f 2897 if (y != null && !isNaN(y)) {
49a7d0d5
DV
2898 low += data[0];
2899 mid += y;
2900 high += data[2];
2901 count += 1;
2902 }
f6885d6a
DV
2903 if (i - rollPeriod >= 0) {
2904 var prev = originalData[i - rollPeriod];
8b91c51f 2905 if (prev[1][1] != null && !isNaN(prev[1][1])) {
49a7d0d5
DV
2906 low -= prev[1][0];
2907 mid -= prev[1][1];
2908 high -= prev[1][2];
2909 count -= 1;
2910 }
f6885d6a
DV
2911 }
2912 rollingData[i] = [originalData[i][0], [ 1.0 * mid / count,
2913 1.0 * (mid - low) / count,
2914 1.0 * (high - mid) / count ]];
2769de62 2915 }
6a1aa64f
DV
2916 } else {
2917 // Calculate the rolling average for the first rollPeriod - 1 points where
6faebb69 2918 // there is not enough data to roll over the full number of points
6a1aa64f 2919 var num_init_points = Math.min(rollPeriod - 1, originalData.length - 2);
285a6bda 2920 if (!this.attr_("errorBars")){
5011e7a1
DV
2921 if (rollPeriod == 1) {
2922 return originalData;
2923 }
2924
2847c1cf 2925 for (var i = 0; i < originalData.length; i++) {
6a1aa64f 2926 var sum = 0;
5011e7a1 2927 var num_ok = 0;
2847c1cf
DV
2928 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
2929 var y = originalData[j][1];
8b91c51f 2930 if (y == null || isNaN(y)) continue;
5011e7a1 2931 num_ok++;
2847c1cf 2932 sum += originalData[j][1];
6a1aa64f 2933 }
5011e7a1 2934 if (num_ok) {
2847c1cf 2935 rollingData[i] = [originalData[i][0], sum / num_ok];
5011e7a1 2936 } else {
2847c1cf 2937 rollingData[i] = [originalData[i][0], null];
5011e7a1 2938 }
6a1aa64f 2939 }
2847c1cf
DV
2940
2941 } else {
2942 for (var i = 0; i < originalData.length; i++) {
6a1aa64f
DV
2943 var sum = 0;
2944 var variance = 0;
5011e7a1 2945 var num_ok = 0;
2847c1cf 2946 for (var j = Math.max(0, i - rollPeriod + 1); j < i + 1; j++) {
5011e7a1 2947 var y = originalData[j][1][0];
8b91c51f 2948 if (y == null || isNaN(y)) continue;
5011e7a1 2949 num_ok++;
6a1aa64f
DV
2950 sum += originalData[j][1][0];
2951 variance += Math.pow(originalData[j][1][1], 2);
2952 }
5011e7a1
DV
2953 if (num_ok) {
2954 var stddev = Math.sqrt(variance) / num_ok;
2955 rollingData[i] = [originalData[i][0],
2956 [sum / num_ok, sigma * stddev, sigma * stddev]];
2957 } else {
2958 rollingData[i] = [originalData[i][0], [null, null, null]];
2959 }
6a1aa64f
DV
2960 }
2961 }
2962 }
2963
2964 return rollingData;
2965};
2966
2967/**
2968 * Parses a date, returning the number of milliseconds since epoch. This can be
285a6bda
DV
2969 * passed in as an xValueParser in the Dygraph constructor.
2970 * TODO(danvk): enumerate formats that this understands.
6a1aa64f
DV
2971 * @param {String} A date in YYYYMMDD format.
2972 * @return {Number} Milliseconds since epoch.
2973 * @public
2974 */
285a6bda 2975Dygraph.dateParser = function(dateStr, self) {
6a1aa64f 2976 var dateStrSlashed;
285a6bda 2977 var d;
986a5026 2978 if (dateStr.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
6a1aa64f 2979 dateStrSlashed = dateStr.replace("-", "/", "g");
353a0294
DV
2980 while (dateStrSlashed.search("-") != -1) {
2981 dateStrSlashed = dateStrSlashed.replace("-", "/");
2982 }
d96b7d1a 2983 d = Dygraph.dateStrToMillis(dateStrSlashed);
2769de62 2984 } else if (dateStr.length == 8) { // e.g. '20090712'
285a6bda 2985 // TODO(danvk): remove support for this format. It's confusing.
6a1aa64f
DV
2986 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2)
2987 + "/" + dateStr.substr(6,2);
d96b7d1a 2988 d = Dygraph.dateStrToMillis(dateStrSlashed);
2769de62
DV
2989 } else {
2990 // Any format that Date.parse will accept, e.g. "2009/07/12" or
2991 // "2009/07/12 12:34:56"
d96b7d1a 2992 d = Dygraph.dateStrToMillis(dateStr);
285a6bda
DV
2993 }
2994
2995 if (!d || isNaN(d)) {
2996 self.error("Couldn't parse " + dateStr + " as a date");
2997 }
2998 return d;
2999};
3000
3001/**
3002 * Detects the type of the str (date or numeric) and sets the various
3003 * formatting attributes in this.attrs_ based on this type.
3004 * @param {String} str An x value.
3005 * @private
3006 */
3007Dygraph.prototype.detectTypeFromString_ = function(str) {
3008 var isDate = false;
ea62df82 3009 if (str.indexOf('-') > 0 ||
285a6bda
DV
3010 str.indexOf('/') >= 0 ||
3011 isNaN(parseFloat(str))) {
3012 isDate = true;
3013 } else if (str.length == 8 && str > '19700101' && str < '20371231') {
3014 // TODO(danvk): remove support for this format.
3015 isDate = true;
3016 }
3017
3018 if (isDate) {
3019 this.attrs_.xValueFormatter = Dygraph.dateString_;
3020 this.attrs_.xValueParser = Dygraph.dateParser;
3021 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 3022 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda 3023 } else {
032e4c1d 3024 this.attrs_.xValueFormatter = function(x) { return x; };
285a6bda
DV
3025 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
3026 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 3027 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
6a1aa64f 3028 }
6a1aa64f
DV
3029};
3030
3031/**
5cd7ac68
DV
3032 * Parses the value as a floating point number. This is like the parseFloat()
3033 * built-in, but with a few differences:
3034 * - the empty string is parsed as null, rather than NaN.
3035 * - if the string cannot be parsed at all, an error is logged.
3036 * If the string can't be parsed, this method returns null.
3037 * @param {String} x The string to be parsed
3038 * @param {Number} opt_line_no The line number from which the string comes.
3039 * @param {String} opt_line The text of the line from which the string comes.
3040 * @private
3041 */
3042
3043// Parse the x as a float or return null if it's not a number.
3044Dygraph.prototype.parseFloat_ = function(x, opt_line_no, opt_line) {
3045 var val = parseFloat(x);
3046 if (!isNaN(val)) return val;
3047
3048 // Try to figure out what happeend.
3049 // If the value is the empty string, parse it as null.
3050 if (/^ *$/.test(x)) return null;
3051
3052 // If it was actually "NaN", return it as NaN.
3053 if (/^ *nan *$/i.test(x)) return NaN;
3054
3055 // Looks like a parsing error.
3056 var msg = "Unable to parse '" + x + "' as a number";
3057 if (opt_line !== null && opt_line_no !== null) {
3058 msg += " on line " + (1+opt_line_no) + " ('" + opt_line + "') of CSV.";
3059 }
3060 this.error(msg);
3061
3062 return null;
3063};
3064
3065/**
6a1aa64f
DV
3066 * Parses a string in a special csv format. We expect a csv file where each
3067 * line is a date point, and the first field in each line is the date string.
3068 * We also expect that all remaining fields represent series.
285a6bda 3069 * if the errorBars attribute is set, then interpret the fields as:
6a1aa64f
DV
3070 * date, series1, stddev1, series2, stddev2, ...
3071 * @param {Array.<Object>} data See above.
3072 * @private
285a6bda
DV
3073 *
3074 * @return Array.<Object> An array with one entry for each row. These entries
3075 * are an array of cells in that row. The first entry is the parsed x-value for
3076 * the row. The second, third, etc. are the y-values. These can take on one of
3077 * three forms, depending on the CSV and constructor parameters:
3078 * 1. numeric value
3079 * 2. [ value, stddev ]
3080 * 3. [ low value, center value, high value ]
6a1aa64f 3081 */
285a6bda 3082Dygraph.prototype.parseCSV_ = function(data) {
6a1aa64f
DV
3083 var ret = [];
3084 var lines = data.split("\n");
3d67f03b
DV
3085
3086 // Use the default delimiter or fall back to a tab if that makes sense.
3087 var delim = this.attr_('delimiter');
3088 if (lines[0].indexOf(delim) == -1 && lines[0].indexOf('\t') >= 0) {
3089 delim = '\t';
3090 }
3091
285a6bda 3092 var start = 0;
6a1aa64f 3093 if (this.labelsFromCSV_) {
285a6bda 3094 start = 1;
3d67f03b 3095 this.attrs_.labels = lines[0].split(delim);
6a1aa64f 3096 }
5cd7ac68 3097 var line_no = 0;
03b522a4 3098
285a6bda
DV
3099 var xParser;
3100 var defaultParserSet = false; // attempt to auto-detect x value type
3101 var expectedCols = this.attr_("labels").length;
987840a2 3102 var outOfOrder = false;
6a1aa64f
DV
3103 for (var i = start; i < lines.length; i++) {
3104 var line = lines[i];
5cd7ac68 3105 line_no = i;
6a1aa64f 3106 if (line.length == 0) continue; // skip blank lines
3d67f03b
DV
3107 if (line[0] == '#') continue; // skip comment lines
3108 var inFields = line.split(delim);
285a6bda 3109 if (inFields.length < 2) continue;
6a1aa64f
DV
3110
3111 var fields = [];
285a6bda
DV
3112 if (!defaultParserSet) {
3113 this.detectTypeFromString_(inFields[0]);
3114 xParser = this.attr_("xValueParser");
3115 defaultParserSet = true;
3116 }
3117 fields[0] = xParser(inFields[0], this);
6a1aa64f
DV
3118
3119 // If fractions are expected, parse the numbers as "A/B"
3120 if (this.fractions_) {
3121 for (var j = 1; j < inFields.length; j++) {
3122 // TODO(danvk): figure out an appropriate way to flag parse errors.
3123 var vals = inFields[j].split("/");
7219edb3
DV
3124 if (vals.length != 2) {
3125 this.error('Expected fractional "num/den" values in CSV data ' +
3126 "but found a value '" + inFields[j] + "' on line " +
3127 (1 + i) + " ('" + line + "') which is not of this form.");
3128 fields[j] = [0, 0];
3129 } else {
3130 fields[j] = [this.parseFloat_(vals[0], i, line),
3131 this.parseFloat_(vals[1], i, line)];
3132 }
6a1aa64f 3133 }
285a6bda 3134 } else if (this.attr_("errorBars")) {
6a1aa64f 3135 // If there are error bars, values are (value, stddev) pairs
7219edb3
DV
3136 if (inFields.length % 2 != 1) {
3137 this.error('Expected alternating (value, stdev.) pairs in CSV data ' +
3138 'but line ' + (1 + i) + ' has an odd number of values (' +
3139 (inFields.length - 1) + "): '" + line + "'");
3140 }
3141 for (var j = 1; j < inFields.length; j += 2) {
5cd7ac68
DV
3142 fields[(j + 1) / 2] = [this.parseFloat_(inFields[j], i, line),
3143 this.parseFloat_(inFields[j + 1], i, line)];
7219edb3 3144 }
9922b78b 3145 } else if (this.attr_("customBars")) {
6a1aa64f
DV
3146 // Bars are a low;center;high tuple
3147 for (var j = 1; j < inFields.length; j++) {
327a9279
DV
3148 var val = inFields[j];
3149 if (/^ *$/.test(val)) {
3150 fields[j] = [null, null, null];
3151 } else {
3152 var vals = val.split(";");
3153 if (vals.length == 3) {
3154 fields[j] = [ this.parseFloat_(vals[0], i, line),
3155 this.parseFloat_(vals[1], i, line),
3156 this.parseFloat_(vals[2], i, line) ];
3157 } else {
3158 this.warning('When using customBars, values must be either blank ' +
3159 'or "low;center;high" tuples (got "' + val +
3160 '" on line ' + (1+i));
3161 }
3162 }
6a1aa64f
DV
3163 }
3164 } else {
3165 // Values are just numbers
285a6bda 3166 for (var j = 1; j < inFields.length; j++) {
5cd7ac68 3167 fields[j] = this.parseFloat_(inFields[j], i, line);
285a6bda 3168 }
6a1aa64f 3169 }
987840a2
DV
3170 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
3171 outOfOrder = true;
3172 }
285a6bda
DV
3173
3174 if (fields.length != expectedCols) {
3175 this.error("Number of columns in line " + i + " (" + fields.length +
3176 ") does not agree with number of labels (" + expectedCols +
3177 ") " + line);
3178 }
6d0aaa09
DV
3179
3180 // If the user specified the 'labels' option and none of the cells of the
3181 // first row parsed correctly, then they probably double-specified the
3182 // labels. We go with the values set in the option, discard this row and
3183 // log a warning to the JS console.
3184 if (i == 0 && this.attr_('labels')) {
3185 var all_null = true;
3186 for (var j = 0; all_null && j < fields.length; j++) {
3187 if (fields[j]) all_null = false;
3188 }
3189 if (all_null) {
3190 this.warn("The dygraphs 'labels' option is set, but the first row of " +
3191 "CSV data ('" + line + "') appears to also contain labels. " +
3192 "Will drop the CSV labels and use the option labels.");
3193 continue;
3194 }
3195 }
3196 ret.push(fields);
6a1aa64f 3197 }
987840a2
DV
3198
3199 if (outOfOrder) {
3200 this.warn("CSV is out of order; order it correctly to speed loading.");
3201 ret.sort(function(a,b) { return a[0] - b[0] });
3202 }
3203
6a1aa64f
DV
3204 return ret;
3205};
3206
3207/**
285a6bda
DV
3208 * The user has provided their data as a pre-packaged JS array. If the x values
3209 * are numeric, this is the same as dygraphs' internal format. If the x values
3210 * are dates, we need to convert them from Date objects to ms since epoch.
3211 * @param {Array.<Object>} data
3212 * @return {Array.<Object>} data with numeric x values.
3213 */
3214Dygraph.prototype.parseArray_ = function(data) {
3215 // Peek at the first x value to see if it's numeric.
3216 if (data.length == 0) {
3217 this.error("Can't plot empty data set");
3218 return null;
3219 }
3220 if (data[0].length == 0) {
3221 this.error("Data set cannot contain an empty row");
3222 return null;
3223 }
3224
3225 if (this.attr_("labels") == null) {
3226 this.warn("Using default labels. Set labels explicitly via 'labels' " +
3227 "in the options parameter");
3228 this.attrs_.labels = [ "X" ];
3229 for (var i = 1; i < data[0].length; i++) {
3230 this.attrs_.labels.push("Y" + i);
3231 }
3232 }
3233
2dda3850 3234 if (Dygraph.isDateLike(data[0][0])) {
285a6bda
DV
3235 // Some intelligent defaults for a date x-axis.
3236 this.attrs_.xValueFormatter = Dygraph.dateString_;
bf640e56 3237 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
285a6bda
DV
3238 this.attrs_.xTicker = Dygraph.dateTicker;
3239
3240 // Assume they're all dates.
e3ab7b40 3241 var parsedData = Dygraph.clone(data);
285a6bda
DV
3242 for (var i = 0; i < data.length; i++) {
3243 if (parsedData[i].length == 0) {
a323ff4a 3244 this.error("Row " + (1 + i) + " of data is empty");
285a6bda
DV
3245 return null;
3246 }
3247 if (parsedData[i][0] == null
3a909ec5
DV
3248 || typeof(parsedData[i][0].getTime) != 'function'
3249 || isNaN(parsedData[i][0].getTime())) {
be96a1f5 3250 this.error("x value in row " + (1 + i) + " is not a Date");
285a6bda
DV
3251 return null;
3252 }
3253 parsedData[i][0] = parsedData[i][0].getTime();
3254 }
3255 return parsedData;
3256 } else {
3257 // Some intelligent defaults for a numeric x-axis.
032e4c1d 3258 this.attrs_.xValueFormatter = function(x) { return x; };
285a6bda
DV
3259 this.attrs_.xTicker = Dygraph.numericTicks;
3260 return data;
3261 }
3262};
3263
3264/**
79420a1e
DV
3265 * Parses a DataTable object from gviz.
3266 * The data is expected to have a first column that is either a date or a
3267 * number. All subsequent columns must be numbers. If there is a clear mismatch
3268 * between this.xValueParser_ and the type of the first column, it will be
a685723c 3269 * fixed. Fills out rawData_.
79420a1e
DV
3270 * @param {Array.<Object>} data See above.
3271 * @private
3272 */
285a6bda 3273Dygraph.prototype.parseDataTable_ = function(data) {
79420a1e
DV
3274 var cols = data.getNumberOfColumns();
3275 var rows = data.getNumberOfRows();
3276
d955e223 3277 var indepType = data.getColumnType(0);
4440f6c8 3278 if (indepType == 'date' || indepType == 'datetime') {
285a6bda
DV
3279 this.attrs_.xValueFormatter = Dygraph.dateString_;
3280 this.attrs_.xValueParser = Dygraph.dateParser;
3281 this.attrs_.xTicker = Dygraph.dateTicker;
bf640e56 3282 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
33127159 3283 } else if (indepType == 'number') {
032e4c1d 3284 this.attrs_.xValueFormatter = function(x) { return x; };
285a6bda
DV
3285 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
3286 this.attrs_.xTicker = Dygraph.numericTicks;
bf640e56 3287 this.attrs_.xAxisLabelFormatter = this.attrs_.xValueFormatter;
285a6bda 3288 } else {
987840a2
DV
3289 this.error("only 'date', 'datetime' and 'number' types are supported for " +
3290 "column 1 of DataTable input (Got '" + indepType + "')");
79420a1e
DV
3291 return null;
3292 }
3293
a685723c
DV
3294 // Array of the column indices which contain data (and not annotations).
3295 var colIdx = [];
3296 var annotationCols = {}; // data index -> [annotation cols]
3297 var hasAnnotations = false;
3298 for (var i = 1; i < cols; i++) {
3299 var type = data.getColumnType(i);
3300 if (type == 'number') {
3301 colIdx.push(i);
3302 } else if (type == 'string' && this.attr_('displayAnnotations')) {
3303 // This is OK -- it's an annotation column.
3304 var dataIdx = colIdx[colIdx.length - 1];
3305 if (!annotationCols.hasOwnProperty(dataIdx)) {
3306 annotationCols[dataIdx] = [i];
3307 } else {
3308 annotationCols[dataIdx].push(i);
3309 }
3310 hasAnnotations = true;
3311 } else {
3312 this.error("Only 'number' is supported as a dependent type with Gviz." +
3313 " 'string' is only supported if displayAnnotations is true");
3314 }
3315 }
3316
3317 // Read column labels
3318 // TODO(danvk): add support back for errorBars
3319 var labels = [data.getColumnLabel(0)];
3320 for (var i = 0; i < colIdx.length; i++) {
3321 labels.push(data.getColumnLabel(colIdx[i]));
f9348814 3322 if (this.attr_("errorBars")) i += 1;
a685723c
DV
3323 }
3324 this.attrs_.labels = labels;
3325 cols = labels.length;
3326
79420a1e 3327 var ret = [];
987840a2 3328 var outOfOrder = false;
a685723c 3329 var annotations = [];
79420a1e
DV
3330 for (var i = 0; i < rows; i++) {
3331 var row = [];
debe4434
DV
3332 if (typeof(data.getValue(i, 0)) === 'undefined' ||
3333 data.getValue(i, 0) === null) {
129569a5
FD
3334 this.warn("Ignoring row " + i +
3335 " of DataTable because of undefined or null first column.");
debe4434
DV
3336 continue;
3337 }
3338
c21d2c2d 3339 if (indepType == 'date' || indepType == 'datetime') {
d955e223
DV
3340 row.push(data.getValue(i, 0).getTime());
3341 } else {
3342 row.push(data.getValue(i, 0));
3343 }
3e3f84e4 3344 if (!this.attr_("errorBars")) {
a685723c
DV
3345 for (var j = 0; j < colIdx.length; j++) {
3346 var col = colIdx[j];
3347 row.push(data.getValue(i, col));
3348 if (hasAnnotations &&
3349 annotationCols.hasOwnProperty(col) &&
3350 data.getValue(i, annotationCols[col][0]) != null) {
3351 var ann = {};
3352 ann.series = data.getColumnLabel(col);
3353 ann.xval = row[0];
3354 ann.shortText = String.fromCharCode(65 /* A */ + annotations.length)
3355 ann.text = '';
3356 for (var k = 0; k < annotationCols[col].length; k++) {
3357 if (k) ann.text += "\n";
3358 ann.text += data.getValue(i, annotationCols[col][k]);
3359 }
3360 annotations.push(ann);
3361 }
3e3f84e4 3362 }
92fd68d8
DV
3363
3364 // Strip out infinities, which give dygraphs problems later on.
3365 for (var j = 0; j < row.length; j++) {
3366 if (!isFinite(row[j])) row[j] = null;
3367 }
3e3f84e4
DV
3368 } else {
3369 for (var j = 0; j < cols - 1; j++) {
3370 row.push([ data.getValue(i, 1 + 2 * j), data.getValue(i, 2 + 2 * j) ]);
3371 }
79420a1e 3372 }
987840a2
DV
3373 if (ret.length > 0 && row[0] < ret[ret.length - 1][0]) {
3374 outOfOrder = true;
3375 }
243d96e8 3376 ret.push(row);
79420a1e 3377 }
987840a2
DV
3378
3379 if (outOfOrder) {
3380 this.warn("DataTable is out of order; order it correctly to speed loading.");
3381 ret.sort(function(a,b) { return a[0] - b[0] });
3382 }
a685723c
DV
3383 this.rawData_ = ret;
3384
3385 if (annotations.length > 0) {
3386 this.setAnnotations(annotations, true);
3387 }
79420a1e
DV
3388}
3389
d96b7d1a
DV
3390// This is identical to JavaScript's built-in Date.parse() method, except that
3391// it doesn't get replaced with an incompatible method by aggressive JS
3392// libraries like MooTools or Joomla.
3393Dygraph.dateStrToMillis = function(str) {
3394 return new Date(str).getTime();
3395};
3396
24e5350c 3397// These functions are all based on MochiKit.
fc80a396
DV
3398Dygraph.update = function (self, o) {
3399 if (typeof(o) != 'undefined' && o !== null) {
3400 for (var k in o) {
85b99f0b
DV
3401 if (o.hasOwnProperty(k)) {
3402 self[k] = o[k];
3403 }
fc80a396
DV
3404 }
3405 }
3406 return self;
3407};
3408
2dda3850
DV
3409Dygraph.isArrayLike = function (o) {
3410 var typ = typeof(o);
3411 if (
c21d2c2d 3412 (typ != 'object' && !(typ == 'function' &&
2dda3850
DV
3413 typeof(o.item) == 'function')) ||
3414 o === null ||
3415 typeof(o.length) != 'number' ||
3416 o.nodeType === 3
3417 ) {
3418 return false;
3419 }
3420 return true;
3421};
3422
3423Dygraph.isDateLike = function (o) {
3424 if (typeof(o) != "object" || o === null ||
3425 typeof(o.getTime) != 'function') {
3426 return false;
3427 }
3428 return true;
3429};
3430
e3ab7b40
DV
3431Dygraph.clone = function(o) {
3432 // TODO(danvk): figure out how MochiKit's version works
3433 var r = [];
3434 for (var i = 0; i < o.length; i++) {
3435 if (Dygraph.isArrayLike(o[i])) {
3436 r.push(Dygraph.clone(o[i]));
3437 } else {
3438 r.push(o[i]);
3439 }
3440 }
3441 return r;
24e5350c
DV
3442};
3443
2dda3850 3444
79420a1e 3445/**
6a1aa64f
DV
3446 * Get the CSV data. If it's in a function, call that function. If it's in a
3447 * file, do an XMLHttpRequest to get it.
3448 * @private
3449 */
285a6bda 3450Dygraph.prototype.start_ = function() {
6a1aa64f 3451 if (typeof this.file_ == 'function') {
285a6bda 3452 // CSV string. Pretend we got it via XHR.
6a1aa64f 3453 this.loadedEvent_(this.file_());
2dda3850 3454 } else if (Dygraph.isArrayLike(this.file_)) {
285a6bda 3455 this.rawData_ = this.parseArray_(this.file_);
26ca7938 3456 this.predraw_();
79420a1e
DV
3457 } else if (typeof this.file_ == 'object' &&
3458 typeof this.file_.getColumnRange == 'function') {
3459 // must be a DataTable from gviz.
a685723c 3460 this.parseDataTable_(this.file_);
26ca7938 3461 this.predraw_();
285a6bda
DV
3462 } else if (typeof this.file_ == 'string') {
3463 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
3464 if (this.file_.indexOf('\n') >= 0) {
3465 this.loadedEvent_(this.file_);
3466 } else {
3467 var req = new XMLHttpRequest();
3468 var caller = this;
3469 req.onreadystatechange = function () {
3470 if (req.readyState == 4) {
3471 if (req.status == 200) {
3472 caller.loadedEvent_(req.responseText);
3473 }
6a1aa64f 3474 }
285a6bda 3475 };
6a1aa64f 3476
285a6bda
DV
3477 req.open("GET", this.file_, true);
3478 req.send(null);
3479 }
3480 } else {
3481 this.error("Unknown data format: " + (typeof this.file_));
6a1aa64f
DV
3482 }
3483};
3484
3485/**
3486 * Changes various properties of the graph. These can include:
3487 * <ul>
3488 * <li>file: changes the source data for the graph</li>
3489 * <li>errorBars: changes whether the data contains stddev</li>
3490 * </ul>
dcb25130 3491 *
6a1aa64f
DV
3492 * @param {Object} attrs The new properties and values
3493 */
285a6bda
DV
3494Dygraph.prototype.updateOptions = function(attrs) {
3495 // TODO(danvk): this is a mess. Rethink this function.
c65f2303 3496 if ('rollPeriod' in attrs) {
6a1aa64f
DV
3497 this.rollPeriod_ = attrs.rollPeriod;
3498 }
c65f2303 3499 if ('dateWindow' in attrs) {
6a1aa64f 3500 this.dateWindow_ = attrs.dateWindow;
e5152598 3501 if (!('isZoomedIgnoreProgrammaticZoom' in attrs)) {
81856f70
NN
3502 this.zoomed_x_ = attrs.dateWindow != null;
3503 }
b7e5862d 3504 }
e5152598 3505 if ('valueRange' in attrs && !('isZoomedIgnoreProgrammaticZoom' in attrs)) {
b7e5862d 3506 this.zoomed_y_ = attrs.valueRange != null;
6a1aa64f 3507 }
450fe64b
DV
3508
3509 // TODO(danvk): validate per-series options.
46dde5f9
DV
3510 // Supported:
3511 // strokeWidth
3512 // pointSize
3513 // drawPoints
3514 // highlightCircleSize
450fe64b 3515
fc80a396 3516 Dygraph.update(this.user_attrs_, attrs);
87bb7958 3517 Dygraph.update(this.renderOptions_, attrs);
285a6bda
DV
3518
3519 this.labelsFromCSV_ = (this.attr_("labels") == null);
3520
3521 // TODO(danvk): this doesn't match the constructor logic
3522 this.layout_.updateOptions({ 'errorBars': this.attr_("errorBars") });
5e50289f 3523 if (attrs['file']) {
6a1aa64f
DV
3524 this.file_ = attrs['file'];
3525 this.start_();
3526 } else {
26ca7938 3527 this.predraw_();
6a1aa64f
DV
3528 }
3529};
3530
3531/**
697e70b2
DV
3532 * Resizes the dygraph. If no parameters are specified, resizes to fill the
3533 * containing div (which has presumably changed size since the dygraph was
3534 * instantiated. If the width/height are specified, the div will be resized.
964f30c6
DV
3535 *
3536 * This is far more efficient than destroying and re-instantiating a
3537 * Dygraph, since it doesn't have to reparse the underlying data.
3538 *
697e70b2
DV
3539 * @param {Number} width Width (in pixels)
3540 * @param {Number} height Height (in pixels)
3541 */
3542Dygraph.prototype.resize = function(width, height) {
e8c7ef86
DV
3543 if (this.resize_lock) {
3544 return;
3545 }
3546 this.resize_lock = true;
3547
697e70b2
DV
3548 if ((width === null) != (height === null)) {
3549 this.warn("Dygraph.resize() should be called with zero parameters or " +
3550 "two non-NULL parameters. Pretending it was zero.");
3551 width = height = null;
3552 }
3553
b16e6369 3554 // TODO(danvk): there should be a clear() method.
697e70b2 3555 this.maindiv_.innerHTML = "";
b16e6369
DV
3556 this.attrs_.labelsDiv = null;
3557
697e70b2
DV
3558 if (width) {
3559 this.maindiv_.style.width = width + "px";
3560 this.maindiv_.style.height = height + "px";
3561 this.width_ = width;
3562 this.height_ = height;
3563 } else {
3564 this.width_ = this.maindiv_.offsetWidth;
3565 this.height_ = this.maindiv_.offsetHeight;
3566 }
3567
3568 this.createInterface_();
26ca7938 3569 this.predraw_();
e8c7ef86
DV
3570
3571 this.resize_lock = false;
697e70b2
DV
3572};
3573
3574/**
6faebb69 3575 * Adjusts the number of points in the rolling average. Updates the graph to
6a1aa64f 3576 * reflect the new averaging period.
6faebb69 3577 * @param {Number} length Number of points over which to average the data.
6a1aa64f 3578 */
285a6bda 3579Dygraph.prototype.adjustRoll = function(length) {
6a1aa64f 3580 this.rollPeriod_ = length;
26ca7938 3581 this.predraw_();
6a1aa64f 3582};
540d00f1 3583
f8cfec73 3584/**
1cf11047
DV
3585 * Returns a boolean array of visibility statuses.
3586 */
3587Dygraph.prototype.visibility = function() {
3588 // Do lazy-initialization, so that this happens after we know the number of
3589 // data series.
3590 if (!this.attr_("visibility")) {
f38dec01 3591 this.attrs_["visibility"] = [];
1cf11047
DV
3592 }
3593 while (this.attr_("visibility").length < this.rawData_[0].length - 1) {
f38dec01 3594 this.attr_("visibility").push(true);
1cf11047
DV
3595 }
3596 return this.attr_("visibility");
3597};
3598
3599/**
3600 * Changes the visiblity of a series.
3601 */
3602Dygraph.prototype.setVisibility = function(num, value) {
3603 var x = this.visibility();
a6c109c1 3604 if (num < 0 || num >= x.length) {
1cf11047
DV
3605 this.warn("invalid series number in setVisibility: " + num);
3606 } else {
3607 x[num] = value;
26ca7938 3608 this.predraw_();
1cf11047
DV
3609 }
3610};
3611
3612/**
5c528fa2
DV
3613 * Update the list of annotations and redraw the chart.
3614 */
a685723c 3615Dygraph.prototype.setAnnotations = function(ann, suppressDraw) {
3c51ab74
DV
3616 // Only add the annotation CSS rule once we know it will be used.
3617 Dygraph.addAnnotationRule();
5c528fa2
DV
3618 this.annotations_ = ann;
3619 this.layout_.setAnnotations(this.annotations_);
a685723c 3620 if (!suppressDraw) {
26ca7938 3621 this.predraw_();
a685723c 3622 }
5c528fa2
DV
3623};
3624
3625/**
3626 * Return the list of annotations.
3627 */
3628Dygraph.prototype.annotations = function() {
3629 return this.annotations_;
3630};
3631
46dde5f9
DV
3632/**
3633 * Get the index of a series (column) given its name. The first column is the
3634 * x-axis, so the data series start with index 1.
3635 */
3636Dygraph.prototype.indexFromSetName = function(name) {
3637 var labels = this.attr_("labels");
3638 for (var i = 0; i < labels.length; i++) {
3639 if (labels[i] == name) return i;
3640 }
3641 return null;
3642};
3643
5c528fa2
DV
3644Dygraph.addAnnotationRule = function() {
3645 if (Dygraph.addedAnnotationCSS) return;
3646
5c528fa2
DV
3647 var rule = "border: 1px solid black; " +
3648 "background-color: white; " +
3649 "text-align: center;";
22186871
DV
3650
3651 var styleSheetElement = document.createElement("style");
3652 styleSheetElement.type = "text/css";
3653 document.getElementsByTagName("head")[0].appendChild(styleSheetElement);
3654
3655 // Find the first style sheet that we can access.
3656 // We may not add a rule to a style sheet from another domain for security
3657 // reasons. This sometimes comes up when using gviz, since the Google gviz JS
3658 // adds its own style sheets from google.com.
3659 for (var i = 0; i < document.styleSheets.length; i++) {
3660 if (document.styleSheets[i].disabled) continue;
3661 var mysheet = document.styleSheets[i];
3662 try {
3663 if (mysheet.insertRule) { // Firefox
3664 var idx = mysheet.cssRules ? mysheet.cssRules.length : 0;
3665 mysheet.insertRule(".dygraphDefaultAnnotation { " + rule + " }", idx);
3666 } else if (mysheet.addRule) { // IE
3667 mysheet.addRule(".dygraphDefaultAnnotation", rule);
3668 }
3669 Dygraph.addedAnnotationCSS = true;
3670 return;
3671 } catch(err) {
3672 // Was likely a security exception.
3673 }
5c528fa2
DV
3674 }
3675
22186871 3676 this.warn("Unable to add default annotation CSS rule; display may be off.");
5c528fa2
DV
3677}
3678
3679/**
f8cfec73
DV
3680 * Create a new canvas element. This is more complex than a simple
3681 * document.createElement("canvas") because of IE and excanvas.
3682 */
3683Dygraph.createCanvas = function() {
3684 var canvas = document.createElement("canvas");
3685
3686 isIE = (/MSIE/.test(navigator.userAgent) && !window.opera);
8b8f2d59 3687 if (isIE && (typeof(G_vmlCanvasManager) != 'undefined')) {
f8cfec73
DV
3688 canvas = G_vmlCanvasManager.initElement(canvas);
3689 }
3690
3691 return canvas;
3692};
3693
540d00f1
DV
3694
3695/**
285a6bda 3696 * A wrapper around Dygraph that implements the gviz API.
540d00f1
DV
3697 * @param {Object} container The DOM object the visualization should live in.
3698 */
285a6bda 3699Dygraph.GVizChart = function(container) {
540d00f1
DV
3700 this.container = container;
3701}
3702
285a6bda 3703Dygraph.GVizChart.prototype.draw = function(data, options) {
c91f4ae8
DV
3704 // Clear out any existing dygraph.
3705 // TODO(danvk): would it make more sense to simply redraw using the current
3706 // date_graph object?
540d00f1 3707 this.container.innerHTML = '';
c91f4ae8
DV
3708 if (typeof(this.date_graph) != 'undefined') {
3709 this.date_graph.destroy();
3710 }
3711
285a6bda 3712 this.date_graph = new Dygraph(this.container, data, options);
540d00f1 3713}
285a6bda 3714
239c712d
NAG
3715/**
3716 * Google charts compatible setSelection
50360fd0 3717 * Only row selection is supported, all points in the row will be highlighted
239c712d
NAG
3718 * @param {Array} array of the selected cells
3719 * @public
3720 */
3721Dygraph.GVizChart.prototype.setSelection = function(selection_array) {
3722 var row = false;
3723 if (selection_array.length) {
3724 row = selection_array[0].row;
3725 }
3726 this.date_graph.setSelection(row);
3727}
3728
103b7292
NAG
3729/**
3730 * Google charts compatible getSelection implementation
3731 * @return {Array} array of the selected cells
3732 * @public
3733 */
3734Dygraph.GVizChart.prototype.getSelection = function() {
3735 var selection = [];
50360fd0 3736
103b7292 3737 var row = this.date_graph.getSelection();
50360fd0 3738
103b7292 3739 if (row < 0) return selection;
50360fd0 3740
103b7292
NAG
3741 col = 1;
3742 for (var i in this.date_graph.layout_.datasets) {
3743 selection.push({row: row, column: col});
3744 col++;
3745 }
3746
3747 return selection;
3748}
3749
285a6bda
DV
3750// Older pages may still use this name.
3751DateGraph = Dygraph;
028ddf8a
DV
3752
3753// <REMOVE_FOR_COMBINED>
0addac07
DV
3754Dygraph.OPTIONS_REFERENCE = // <JSON>
3755{
a38e9336
DV
3756 "xValueParser": {
3757 "default": "parseFloat() or Date.parse()*",
3758 "labels": ["CSV parsing"],
3759 "type": "function(str) -> number",
3760 "description": "A function which parses x-values (i.e. the dependent series). Must return a number, even when the values are dates. In this case, millis since epoch are used. This is used primarily for parsing CSV data. *=Dygraphs is slightly more accepting in the dates which it will parse. See code for details."
3761 },
3762 "stackedGraph": {
a96f59f4 3763 "default": "false",
a38e9336
DV
3764 "labels": ["Data Line display"],
3765 "type": "boolean",
3766 "description": "If set, stack series on top of one another rather than drawing them independently."
a96f59f4 3767 },
a38e9336 3768 "pointSize": {
a96f59f4 3769 "default": "1",
a38e9336
DV
3770 "labels": ["Data Line display"],
3771 "type": "integer",
3772 "description": "The size of the dot to draw on each point in pixels (see drawPoints). A dot is always drawn when a point is \"isolated\", i.e. there is a missing point on either side of it. This also controls the size of those dots."
a96f59f4 3773 },
a38e9336
DV
3774 "labelsDivStyles": {
3775 "default": "null",
3776 "labels": ["Legend"],
3777 "type": "{}",
3778 "description": "Additional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold."
a96f59f4 3779 },
a38e9336 3780 "drawPoints": {
a96f59f4 3781 "default": "false",
a38e9336
DV
3782 "labels": ["Data Line display"],
3783 "type": "boolean",
3784 "description": "Draw a small dot at each point, in addition to a line going through the point. This makes the individual data points easier to see, but can increase visual clutter in the chart."
a96f59f4 3785 },
a38e9336
DV
3786 "height": {
3787 "default": "320",
3788 "labels": ["Overall display"],
3789 "type": "integer",
3790 "description": "Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
a96f59f4
DV
3791 },
3792 "zoomCallback": {
a96f59f4 3793 "default": "null",
a38e9336
DV
3794 "labels": ["Callbacks"],
3795 "type": "function(minDate, maxDate, yRanges)",
a96f59f4
DV
3796 "description": "A function to call when the zoom window is changed (either by zooming in or out). minDate and maxDate are milliseconds since epoch. yRanges is an array of [bottom, top] pairs, one for each y-axis."
3797 },
a38e9336
DV
3798 "pointClickCallback": {
3799 "default": "",
3800 "labels": ["Callbacks", "Interactive Elements"],
3801 "type": "",
3802 "description": ""
a96f59f4 3803 },
a38e9336
DV
3804 "colors": {
3805 "default": "(see description)",
3806 "labels": ["Data Series Colors"],
3807 "type": "array<string>",
3808 "example": "['red', '#00FF00']",
3809 "description": "List of colors for the data series. These can be of the form \"#AABBCC\" or \"rgb(255,100,200)\" or \"yellow\", etc. If not specified, equally-spaced points around a color wheel are used."
a96f59f4 3810 },
a38e9336 3811 "connectSeparatedPoints": {
a96f59f4 3812 "default": "false",
a38e9336
DV
3813 "labels": ["Data Line display"],
3814 "type": "boolean",
3815 "description": "Usually, when Dygraphs encounters a missing value in a data series, it interprets this as a gap and draws it as such. If, instead, the missing values represents an x-value for which only a different series has data, then you'll want to connect the dots by setting this to true. To explicitly include a gap with this option set, use a value of NaN."
a96f59f4 3816 },
a38e9336 3817 "highlightCallback": {
a96f59f4 3818 "default": "null",
a38e9336
DV
3819 "labels": ["Callbacks"],
3820 "type": "function(event, x, points,row)",
3821 "description": "When set, this callback gets called every time a new point is highlighted. The parameters are the JavaScript mousemove event, the x-coordinate of the highlighted points and an array of highlighted points: <code>[ {name: 'series', yval: y-value}, &hellip; ]</code>"
a96f59f4 3822 },
a38e9336 3823 "includeZero": {
a96f59f4 3824 "default": "false",
a38e9336 3825 "labels": ["Axis display"],
a96f59f4 3826 "type": "boolean",
a38e9336 3827 "description": "Usually, dygraphs will use the range of the data plus some padding to set the range of the y-axis. If this option is set, the y-axis will always include zero, typically as the lowest value. This can be used to avoid exaggerating the variance in the data"
a96f59f4 3828 },
a38e9336
DV
3829 "rollPeriod": {
3830 "default": "1",
3831 "labels": ["Error Bars", "Rolling Averages"],
3832 "type": "integer &gt;= 1",
3833 "description": "Number of days over which to average data. Discussed extensively above."
a96f59f4 3834 },
a38e9336 3835 "unhighlightCallback": {
a96f59f4 3836 "default": "null",
a38e9336
DV
3837 "labels": ["Callbacks"],
3838 "type": "function(event)",
3839 "description": "When set, this callback gets called every time the user stops highlighting any point by mousing out of the graph. The parameter is the mouseout event."
a96f59f4 3840 },
a38e9336
DV
3841 "axisTickSize": {
3842 "default": "3.0",
3843 "labels": ["Axis display"],
3844 "type": "number",
3845 "description": "The size of the line to display next to each tick mark on x- or y-axes."
a96f59f4 3846 },
a38e9336 3847 "labelsSeparateLines": {
a96f59f4 3848 "default": "false",
a38e9336
DV
3849 "labels": ["Legend"],
3850 "type": "boolean",
3851 "description": "Put <code>&lt;br/&gt;</code> between lines in the label string. Often used in conjunction with <strong>labelsDiv</strong>."
a96f59f4 3852 },
a38e9336
DV
3853 "xValueFormatter": {
3854 "default": "(Round to 2 decimal places)",
3855 "labels": ["Axis display"],
3856 "type": "function(x)",
3857 "description": "Function to provide a custom display format for the X value for mouseover."
a96f59f4
DV
3858 },
3859 "pixelsPerYLabel": {
a96f59f4 3860 "default": "30",
a38e9336
DV
3861 "labels": ["Axis display", "Grid"],
3862 "type": "integer",
a96f59f4
DV
3863 "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
3864 },
a38e9336 3865 "annotationMouseOverHandler": {
5cc5f631 3866 "default": "null",
a38e9336 3867 "labels": ["Annotations"],
5cc5f631
DV
3868 "type": "function(annotation, point, dygraph, event)",
3869 "description": "If provided, this function is called whenever the user mouses over an annotation."
3870 },
3871 "annotationMouseOutHandler": {
3872 "default": "null",
3873 "labels": ["Annotations"],
3874 "type": "function(annotation, point, dygraph, event)",
3875 "description": "If provided, this function is called whenever the user mouses out of an annotation."
a96f59f4 3876 },
8165189e 3877 "annotationClickHandler": {
5cc5f631 3878 "default": "null",
8165189e 3879 "labels": ["Annotations"],
5cc5f631
DV
3880 "type": "function(annotation, point, dygraph, event)",
3881 "description": "If provided, this function is called whenever the user clicks on an annotation."
8165189e
DV
3882 },
3883 "annotationDblClickHandler": {
5cc5f631 3884 "default": "null",
8165189e 3885 "labels": ["Annotations"],
5cc5f631
DV
3886 "type": "function(annotation, point, dygraph, event)",
3887 "description": "If provided, this function is called whenever the user double-clicks on an annotation."
8165189e 3888 },
a38e9336
DV
3889 "drawCallback": {
3890 "default": "null",
3891 "labels": ["Callbacks"],
3892 "type": "function(dygraph, is_initial)",
3893 "description": "When set, this callback gets called every time the dygraph is drawn. This includes the initial draw, after zooming and repeatedly while panning. The first parameter is the dygraph being drawn. The second is a boolean value indicating whether this is the initial draw."
3894 },
3895 "labelsKMG2": {
3896 "default": "false",
3897 "labels": ["Value display/formatting"],
3898 "type": "boolean",
3899 "description": "Show k/M/G for kilo/Mega/Giga on y-axis. This is different than <code>labelsKMB</code> in that it uses base 2, not 10."
3900 },
3901 "delimiter": {
3902 "default": ",",
3903 "labels": ["CSV parsing"],
3904 "type": "string",
3905 "description": "The delimiter to look for when separating fields of a CSV file. Setting this to a tab is not usually necessary, since tab-delimited data is auto-detected."
a96f59f4
DV
3906 },
3907 "axisLabelFontSize": {
a96f59f4 3908 "default": "14",
a38e9336
DV
3909 "labels": ["Axis display"],
3910 "type": "integer",
a96f59f4
DV
3911 "description": "Size of the font (in pixels) to use in the axis labels, both x- and y-axis."
3912 },
a38e9336
DV
3913 "underlayCallback": {
3914 "default": "null",
3915 "labels": ["Callbacks"],
3916 "type": "function(canvas, area, dygraph)",
3917 "description": "When set, this callback gets called before the chart is drawn. It details on how to use this."
a96f59f4 3918 },
a38e9336
DV
3919 "width": {
3920 "default": "480",
3921 "labels": ["Overall display"],
3922 "type": "integer",
3923 "description": "Width, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
a96f59f4 3924 },
a38e9336
DV
3925 "interactionModel": {
3926 "default": "...",
3927 "labels": ["Interactive Elements"],
3928 "type": "Object",
3929 "description": "TODO(konigsberg): document this"
3930 },
3931 "xTicker": {
3932 "default": "Dygraph.dateTicker or Dygraph.numericTicks",
3933 "labels": ["Axis display"],
3934 "type": "function(min, max, dygraph) -> [{v: ..., label: ...}, ...]",
3935 "description": "This lets you specify an arbitrary function to generate tick marks on an axis. The tick marks are an array of (value, label) pairs. The built-in functions go to great lengths to choose good tick marks so, if you set this option, you'll most likely want to call one of them and modify the result."
3936 },
3937 "xAxisLabelWidth": {
3938 "default": "50",
3939 "labels": ["Axis display"],
a96f59f4 3940 "type": "integer",
a38e9336 3941 "description": "Width, in pixels, of the x-axis labels."
a96f59f4 3942 },
a38e9336
DV
3943 "showLabelsOnHighlight": {
3944 "default": "true",
3945 "labels": ["Interactive Elements", "Legend"],
a96f59f4 3946 "type": "boolean",
a38e9336 3947 "description": "Whether to show the legend upon mouseover."
a96f59f4 3948 },
a38e9336
DV
3949 "axis": {
3950 "default": "(none)",
3951 "labels": ["Axis display"],
3952 "type": "string or object",
3953 "description": "Set to either an object ({}) filled with options for this axis or to the name of an existing data series with its own axis to re-use that axis. See tests for usage."
3954 },
3955 "pixelsPerXLabel": {
3956 "default": "60",
3957 "labels": ["Axis display", "Grid"],
a96f59f4 3958 "type": "integer",
a38e9336
DV
3959 "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
3960 },
3961 "labelsDiv": {
3962 "default": "null",
3963 "labels": ["Legend"],
3964 "type": "DOM element or string",
3965 "example": "<code style='font-size: small'>document.getElementById('foo')</code>or<code>'foo'",
3966 "description": "Show data labels in an external div, rather than on the graph. This value can either be a div element or a div id."
a96f59f4
DV
3967 },
3968 "fractions": {
a96f59f4 3969 "default": "false",
a38e9336
DV
3970 "labels": ["CSV parsing", "Error Bars"],
3971 "type": "boolean",
a96f59f4
DV
3972 "description": "When set, attempt to parse each cell in the CSV file as \"a/b\", where a and b are integers. The ratio will be plotted. This allows computation of Wilson confidence intervals (see below)."
3973 },
a38e9336
DV
3974 "logscale": {
3975 "default": "false",
3976 "labels": ["Axis display"],
a96f59f4 3977 "type": "boolean",
a109b711 3978 "description": "When set for a y-axis, the graph shows that axis in log scale. Any values less than or equal to zero are not displayed.\n\nNot compatible with showZero, and ignores connectSeparatedPoints. Also, showing log scale with valueRanges that are less than zero will result in an unviewable graph."
a38e9336
DV
3979 },
3980 "strokeWidth": {
3981 "default": "1.0",
3982 "labels": ["Data Line display"],
3983 "type": "integer",
3984 "example": "0.5, 2.0",
3985 "description": "The width of the lines connecting data points. This can be used to increase the contrast or some graphs."
3986 },
3987 "wilsonInterval": {
a96f59f4 3988 "default": "true",
a38e9336
DV
3989 "labels": ["Error Bars"],
3990 "type": "boolean",
a96f59f4
DV
3991 "description": "Use in conjunction with the \"fractions\" option. Instead of plotting +/- N standard deviations, dygraphs will compute a Wilson confidence interval and plot that. This has more reasonable behavior for ratios close to 0 or 1."
3992 },
a38e9336 3993 "fillGraph": {
a96f59f4 3994 "default": "false",
a38e9336
DV
3995 "labels": ["Data Line display"],
3996 "type": "boolean",
3997 "description": "Should the area underneath the graph be filled? This option is not compatible with error bars."
a96f59f4 3998 },
a38e9336
DV
3999 "highlightCircleSize": {
4000 "default": "3",
4001 "labels": ["Interactive Elements"],
4002 "type": "integer",
4003 "description": "The size in pixels of the dot drawn over highlighted points."
a96f59f4
DV
4004 },
4005 "gridLineColor": {
a96f59f4 4006 "default": "rgb(128,128,128)",
a38e9336
DV
4007 "labels": ["Grid"],
4008 "type": "red, blue",
a96f59f4
DV
4009 "description": "The color of the gridlines."
4010 },
a38e9336
DV
4011 "visibility": {
4012 "default": "[true, true, ...]",
4013 "labels": ["Data Line display"],
4014 "type": "Array of booleans",
4015 "description": "Which series should initially be visible? Once the Dygraph has been constructed, you can access and modify the visibility of each series using the <code>visibility</code> and <code>setVisibility</code> methods."
a96f59f4 4016 },
a38e9336
DV
4017 "valueRange": {
4018 "default": "Full range of the input is shown",
4019 "labels": ["Axis display"],
4020 "type": "Array of two numbers",
4021 "example": "[10, 110]",
4022 "description": "Explicitly set the vertical range of the graph to [low, high]."
a96f59f4 4023 },
a38e9336
DV
4024 "labelsDivWidth": {
4025 "default": "250",
4026 "labels": ["Legend"],
a96f59f4 4027 "type": "integer",
a38e9336 4028 "description": "Width (in pixels) of the div which shows information on the currently-highlighted points."
a96f59f4 4029 },
a38e9336
DV
4030 "colorSaturation": {
4031 "default": "1.0",
4032 "labels": ["Data Series Colors"],
4033 "type": "0.0 - 1.0",
4034 "description": "If <strong>colors</strong> is not specified, saturation of the automatically-generated data series colors."
4035 },
4036 "yAxisLabelWidth": {
4037 "default": "50",
4038 "labels": ["Axis display"],
a96f59f4 4039 "type": "integer",
a38e9336 4040 "description": "Width, in pixels, of the y-axis labels."
a96f59f4 4041 },
a38e9336
DV
4042 "hideOverlayOnMouseOut": {
4043 "default": "true",
4044 "labels": ["Interactive Elements", "Legend"],
a96f59f4 4045 "type": "boolean",
a38e9336 4046 "description": "Whether to hide the legend when the mouse leaves the chart area."
a96f59f4
DV
4047 },
4048 "yValueFormatter": {
a96f59f4 4049 "default": "(Round to 2 decimal places)",
a38e9336
DV
4050 "labels": ["Axis display"],
4051 "type": "function(x)",
a96f59f4
DV
4052 "description": "Function to provide a custom display format for the Y value for mouseover."
4053 },
a38e9336
DV
4054 "legend": {
4055 "default": "onmouseover",
4056 "labels": ["Legend"],
4057 "type": "string",
4058 "description": "When to display the legend. By default, it only appears when a user mouses over the chart. Set it to \"always\" to always display a legend of some sort."
4059 },
4060 "labelsShowZeroValues": {
4061 "default": "true",
4062 "labels": ["Legend"],
a96f59f4 4063 "type": "boolean",
a38e9336
DV
4064 "description": "Show zero value labels in the labelsDiv."
4065 },
4066 "stepPlot": {
a96f59f4 4067 "default": "false",
a38e9336
DV
4068 "labels": ["Data Line display"],
4069 "type": "boolean",
4070 "description": "When set, display the graph as a step plot instead of a line plot."
a96f59f4 4071 },
a38e9336
DV
4072 "labelsKMB": {
4073 "default": "false",
4074 "labels": ["Value display/formatting"],
a96f59f4 4075 "type": "boolean",
a38e9336
DV
4076 "description": "Show K/M/B for thousands/millions/billions on y-axis."
4077 },
4078 "rightGap": {
4079 "default": "5",
4080 "labels": ["Overall display"],
4081 "type": "integer",
4082 "description": "Number of pixels to leave blank at the right edge of the Dygraph. This makes it easier to highlight the right-most data point."
4083 },
4084 "avoidMinZero": {
a96f59f4 4085 "default": "false",
a38e9336
DV
4086 "labels": ["Axis display"],
4087 "type": "boolean",
4088 "description": "When set, the heuristic that fixes the Y axis at zero for a data set with the minimum Y value of zero is disabled. \nThis is particularly useful for data sets that contain many zero values, especially for step plots which may otherwise have lines not visible running along the bottom axis."
4089 },
4090 "xAxisLabelFormatter": {
4091 "default": "Dygraph.dateAxisFormatter",
4092 "labels": ["Axis display", "Value display/formatting"],
4093 "type": "function(date, granularity)",
4094 "description": "Function to call to format values along the x axis."
4095 },
4096 "clickCallback": {
4097 "snippet": "function(e, date){<br>&nbsp;&nbsp;alert(date);<br>}",
4098 "default": "null",
4099 "labels": ["Callbacks"],
4100 "type": "function(e, date)",
4101 "description": "A function to call when a data point is clicked. The function should take two arguments, the event object for the click and the date that was clicked."
4102 },
4103 "yAxisLabelFormatter": {
4104 "default": "yValueFormatter",
4105 "labels": ["Axis display", "Value display/formatting"],
4106 "type": "function(x)",
4107 "description": "Function used to format values along the Y axis. By default it uses the same as the <code>yValueFormatter</code> unless specified."
a96f59f4
DV
4108 },
4109 "labels": {
a96f59f4 4110 "default": "[\"X\", \"Y1\", \"Y2\", ...]*",
a38e9336
DV
4111 "labels": ["Legend"],
4112 "type": "array<string>",
a96f59f4
DV
4113 "description": "A name for each data series, including the independent (X) series. For CSV files and DataTable objections, this is determined by context. For raw data, this must be specified. If it is not, default values are supplied and a warning is logged."
4114 },
a38e9336
DV
4115 "dateWindow": {
4116 "default": "Full range of the input is shown",
4117 "labels": ["Axis display"],
4118 "type": "Array of two Dates or numbers",
4119 "example": "[<br>&nbsp;&nbsp;Date.parse('2006-01-01'),<br>&nbsp;&nbsp;(new Date()).valueOf()<br>]",
4120 "description": "Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. If the data for the x-axis is numeric, the values in dateWindow must also be numbers."
a96f59f4 4121 },
a38e9336
DV
4122 "showRoller": {
4123 "default": "false",
4124 "labels": ["Interactive Elements", "Rolling Averages"],
4125 "type": "boolean",
4126 "description": "If the rolling average period text box should be shown."
a96f59f4 4127 },
a38e9336
DV
4128 "sigma": {
4129 "default": "2.0",
4130 "labels": ["Error Bars"],
ca49434a 4131 "type": "float",
a38e9336 4132 "description": "When errorBars is set, shade this many standard deviations above/below each point."
a96f59f4 4133 },
a38e9336 4134 "customBars": {
a96f59f4 4135 "default": "false",
a38e9336 4136 "labels": ["CSV parsing", "Error Bars"],
a96f59f4 4137 "type": "boolean",
a38e9336 4138 "description": "When set, parse each CSV cell as \"low;middle;high\". Error bars will be drawn for each point between low and high, with the series itself going through middle."
a96f59f4 4139 },
a38e9336
DV
4140 "colorValue": {
4141 "default": "1.0",
4142 "labels": ["Data Series Colors"],
4143 "type": "float (0.0 - 1.0)",
4144 "description": "If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5)"
a96f59f4 4145 },
a38e9336
DV
4146 "errorBars": {
4147 "default": "false",
4148 "labels": ["CSV parsing", "Error Bars"],
a96f59f4 4149 "type": "boolean",
a38e9336 4150 "description": "Does the data contain standard deviations? Setting this to true alters the input format (see above)."
a96f59f4 4151 },
a38e9336
DV
4152 "displayAnnotations": {
4153 "default": "false",
4154 "labels": ["Annotations"],
a96f59f4 4155 "type": "boolean",
a38e9336 4156 "description": "Only applies when Dygraphs is used as a GViz chart. Causes string columns following a data series to be interpreted as annotations on points in that series. This is the same format used by Google's AnnotatedTimeLine chart."
4cac8c7a 4157 },
965a030e 4158 "panEdgeFraction": {
4cac8c7a 4159 "default": "null",
965a030e 4160 "labels": ["Axis Display", "Interactive Elements"],
4cac8c7a
RK
4161 "type": "float",
4162 "default": "null",
4163 "description": "A value representing the farthest a graph may be panned, in percent of the display. For example, a value of 0.1 means that the graph can only be panned 10% pased the edges of the displayed values. null means no bounds."
ca49434a
DV
4164 },
4165 "title": {
4166 "labels": ["Chart labels"],
4167 "type": "string",
4168 "default": "null",
4169 "description": "Text to display above the chart. You can supply any HTML for this value, not just text. If you wish to style it using CSS, use the 'dygraph-label' or 'dygraph-title' classes."
4170 },
4171 "titleHeight": {
4172 "default": "18",
4173 "labels": ["Chart labels"],
4174 "type": "integer",
4175 "description": "Height of the chart title, in pixels. This also controls the default font size of the title. If you style the title on your own, this controls how much space is set aside above the chart for the title's div."
4176 },
4177 "xlabel": {
4178 "labels": ["Chart labels"],
4179 "type": "string",
4180 "default": "null",
4181 "description": "Text to display below the chart's x-axis. You can supply any HTML for this value, not just text. If you wish to style it using CSS, use the 'dygraph-label' or 'dygraph-xlabel' classes."
4182 },
4183 "xLabelHeight": {
4184 "labels": ["Chart labels"],
4185 "type": "integer",
4186 "default": "18",
4187 "description": "Height of the x-axis label, in pixels. This also controls the default font size of the x-axis label. If you style the label on your own, this controls how much space is set aside below the chart for the x-axis label's div."
4188 },
4189 "ylabel": {
4190 "labels": ["Chart labels"],
4191 "type": "string",
4192 "default": "null",
4193 "description": "Text to display to the left of the chart's y-axis. You can supply any HTML for this value, not just text. If you wish to style it using CSS, use the 'dygraph-label' or 'dygraph-ylabel' classes. The text will be rotated 90 degrees by default, so CSS rules may behave in unintuitive ways. No additional space is set aside for a y-axis label. If you need more space, increase the width of the y-axis tick labels using the yAxisLabelWidth option. If you need a wider div for the y-axis label, either style it that way with CSS (but remember that it's rotated, so width is controlled by the 'height' property) or set the yLabelWidth option."
4194 },
4195 "yLabelWidth": {
4196 "labels": ["Chart labels"],
4197 "type": "integer",
4198 "default": "18",
4199 "description": "Width of the div which contains the y-axis label. Since the y-axis label appears rotated 90 degrees, this actually affects the height of its div."
5bc3e265 4200 },
e5152598
NN
4201 "isZoomedIgnoreProgrammaticZoom" : {
4202 "default": "false",
4203 "labels": ["Zooming"],
4204 "type": "boolean",
36dfa958 4205 "description" : "When this option is passed to updateOptions() along with either the <code>dateWindow</code> or <code>valueRange</code> options, the zoom flags are not changed to reflect a zoomed state. This is primarily useful for when the display area of a chart is changed programmatically and also where manual zooming is allowed and use is made of the <code>isZoomed</code> method to determine this."
028ddf8a 4206 }
0addac07
DV
4207}
4208; // </JSON>
4209// NOTE: in addition to parsing as JS, this snippet is expected to be valid
4210// JSON. This assumption cannot be checked in JS, but it will be checked when
ca49434a
DV
4211// documentation is generated by the generate-documentation.py script. For the
4212// most part, this just means that you should always use double quotes.
028ddf8a
DV
4213
4214// Do a quick sanity check on the options reference.
4215(function() {
4216 var warn = function(msg) { if (console) console.warn(msg); };
4217 var flds = ['type', 'default', 'description'];
a38e9336
DV
4218 var valid_cats = [
4219 'Annotations',
4220 'Axis display',
ca49434a 4221 'Chart labels',
a38e9336
DV
4222 'CSV parsing',
4223 'Callbacks',
4224 'Data Line display',
4225 'Data Series Colors',
4226 'Error Bars',
4227 'Grid',
4228 'Interactive Elements',
4229 'Legend',
4230 'Overall display',
4231 'Rolling Averages',
36dfa958
DV
4232 'Value display/formatting',
4233 'Zooming'
a38e9336
DV
4234 ];
4235 var cats = {};
4236 for (var i = 0; i < valid_cats.length; i++) cats[valid_cats[i]] = true;
4237
028ddf8a
DV
4238 for (var k in Dygraph.OPTIONS_REFERENCE) {
4239 if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(k)) continue;
4240 var op = Dygraph.OPTIONS_REFERENCE[k];
4241 for (var i = 0; i < flds.length; i++) {
4242 if (!op.hasOwnProperty(flds[i])) {
4243 warn('Option ' + k + ' missing "' + flds[i] + '" property');
4244 } else if (typeof(op[flds[i]]) != 'string') {
4245 warn(k + '.' + flds[i] + ' must be of type string');
4246 }
4247 }
a38e9336
DV
4248 var labels = op['labels'];
4249 if (typeof(labels) !== 'object') {
4250 warn('Option "' + k + '" is missing a "labels": [...] option');
4251 for (var i = 0; i < labels.length; i++) {
4252 if (!cats.hasOwnProperty(labels[i])) {
4253 warn('Option "' + k + '" has label "' + labels[i] +
4254 '", which is invalid.');
4255 }
4256 }
4257 }
028ddf8a
DV
4258 }
4259})();
4260// </REMOVE_FOR_COMBINED>