acbcbe3b216991d491a9395505c127d3c86b7730
[dygraphs.git] / dygraph.js
1 /**
2 * @license
3 * Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
6
7 /**
8 * @fileoverview Creates an interactive, zoomable graph based on a CSV file or
9 * string. Dygraph can handle multiple series with or without error bars. The
10 * date/value ranges will be automatically set. Dygraph uses the
11 * <canvas> tag, so it only works in FF1.5+.
12 * @author danvdk@gmail.com (Dan Vanderkam)
13
14 Usage:
15 <div id="graphdiv" style="width:800px; height:500px;"></div>
16 <script type="text/javascript">
17 new Dygraph(document.getElementById("graphdiv"),
18 "datafile.csv", // CSV file with headers
19 { }); // options
20 </script>
21
22 The CSV file is of the form
23
24 Date,SeriesA,SeriesB,SeriesC
25 YYYYMMDD,A1,B1,C1
26 YYYYMMDD,A2,B2,C2
27
28 If the 'errorBars' option is set in the constructor, the input should be of
29 the form
30 Date,SeriesA,SeriesB,...
31 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
32 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
33
34 If the 'fractions' option is set, the input should be of the form:
35
36 Date,SeriesA,SeriesB,...
37 YYYYMMDD,A1/B1,A2/B2,...
38 YYYYMMDD,A1/B1,A2/B2,...
39
40 And error bars will be calculated automatically using a binomial distribution.
41
42 For further documentation and examples, see http://dygraphs.com/
43
44 */
45
46 // For "production" code, this gets set to false by uglifyjs.
47 if (typeof(DEBUG) === 'undefined') DEBUG=true;
48
49 var Dygraph = (function() {
50 /*global DygraphLayout:false, DygraphCanvasRenderer:false, DygraphOptions:false, G_vmlCanvasManager:false,ActiveXObject:false */
51 "use strict";
52
53 /**
54 * Creates an interactive, zoomable chart.
55 *
56 * @constructor
57 * @param {div | String} div A div or the id of a div into which to construct
58 * the chart.
59 * @param {String | Function} file A file containing CSV data or a function
60 * that returns this data. The most basic expected format for each line is
61 * "YYYY/MM/DD,val1,val2,...". For more information, see
62 * http://dygraphs.com/data.html.
63 * @param {Object} attrs Various other attributes, e.g. errorBars determines
64 * whether the input data contains error ranges. For a complete list of
65 * options, see http://dygraphs.com/options.html.
66 */
67 var Dygraph = function(div, data, opts, opt_fourth_param) {
68 // These have to go above the "Hack for IE" in __init__ since .ready() can be
69 // called as soon as the constructor returns. Once support for OldIE is
70 // dropped, this can go down with the rest of the initializers.
71 this.is_initial_draw_ = true;
72 this.readyFns_ = [];
73
74 if (opt_fourth_param !== undefined) {
75 // Old versions of dygraphs took in the series labels as a constructor
76 // parameter. This doesn't make sense anymore, but it's easy to continue
77 // to support this usage.
78 console.warn("Using deprecated four-argument dygraph constructor");
79 this.__old_init__(div, data, opts, opt_fourth_param);
80 } else {
81 this.__init__(div, data, opts);
82 }
83 };
84
85 Dygraph.NAME = "Dygraph";
86 Dygraph.VERSION = "1.1.0";
87 Dygraph.__repr__ = function() {
88 return "[" + Dygraph.NAME + " " + Dygraph.VERSION + "]";
89 };
90
91 /**
92 * Returns information about the Dygraph class.
93 */
94 Dygraph.toString = function() {
95 return Dygraph.__repr__();
96 };
97
98 // Various default values
99 Dygraph.DEFAULT_ROLL_PERIOD = 1;
100 Dygraph.DEFAULT_WIDTH = 480;
101 Dygraph.DEFAULT_HEIGHT = 320;
102
103 // For max 60 Hz. animation:
104 Dygraph.ANIMATION_STEPS = 12;
105 Dygraph.ANIMATION_DURATION = 200;
106
107 // Label constants for the labelsKMB and labelsKMG2 options.
108 // (i.e. '100000' -> '100K')
109 Dygraph.KMB_LABELS = [ 'K', 'M', 'B', 'T', 'Q' ];
110 Dygraph.KMG2_BIG_LABELS = [ 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' ];
111 Dygraph.KMG2_SMALL_LABELS = [ 'm', 'u', 'n', 'p', 'f', 'a', 'z', 'y' ];
112
113 // These are defined before DEFAULT_ATTRS so that it can refer to them.
114 /**
115 * @private
116 * Return a string version of a number. This respects the digitsAfterDecimal
117 * and maxNumberWidth options.
118 * @param {number} x The number to be formatted
119 * @param {Dygraph} opts An options view
120 */
121 Dygraph.numberValueFormatter = function(x, opts) {
122 var sigFigs = opts('sigFigs');
123
124 if (sigFigs !== null) {
125 // User has opted for a fixed number of significant figures.
126 return Dygraph.floatFormat(x, sigFigs);
127 }
128
129 var digits = opts('digitsAfterDecimal');
130 var maxNumberWidth = opts('maxNumberWidth');
131
132 var kmb = opts('labelsKMB');
133 var kmg2 = opts('labelsKMG2');
134
135 var label;
136
137 // switch to scientific notation if we underflow or overflow fixed display.
138 if (x !== 0.0 &&
139 (Math.abs(x) >= Math.pow(10, maxNumberWidth) ||
140 Math.abs(x) < Math.pow(10, -digits))) {
141 label = x.toExponential(digits);
142 } else {
143 label = '' + Dygraph.round_(x, digits);
144 }
145
146 if (kmb || kmg2) {
147 var k;
148 var k_labels = [];
149 var m_labels = [];
150 if (kmb) {
151 k = 1000;
152 k_labels = Dygraph.KMB_LABELS;
153 }
154 if (kmg2) {
155 if (kmb) console.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
156 k = 1024;
157 k_labels = Dygraph.KMG2_BIG_LABELS;
158 m_labels = Dygraph.KMG2_SMALL_LABELS;
159 }
160
161 var absx = Math.abs(x);
162 var n = Dygraph.pow(k, k_labels.length);
163 for (var j = k_labels.length - 1; j >= 0; j--, n /= k) {
164 if (absx >= n) {
165 label = Dygraph.round_(x / n, digits) + k_labels[j];
166 break;
167 }
168 }
169 if (kmg2) {
170 // TODO(danvk): clean up this logic. Why so different than kmb?
171 var x_parts = String(x.toExponential()).split('e-');
172 if (x_parts.length === 2 && x_parts[1] >= 3 && x_parts[1] <= 24) {
173 if (x_parts[1] % 3 > 0) {
174 label = Dygraph.round_(x_parts[0] /
175 Dygraph.pow(10, (x_parts[1] % 3)),
176 digits);
177 } else {
178 label = Number(x_parts[0]).toFixed(2);
179 }
180 label += m_labels[Math.floor(x_parts[1] / 3) - 1];
181 }
182 }
183 }
184
185 return label;
186 };
187
188 /**
189 * variant for use as an axisLabelFormatter.
190 * @private
191 */
192 Dygraph.numberAxisLabelFormatter = function(x, granularity, opts) {
193 return Dygraph.numberValueFormatter.call(this, x, opts);
194 };
195
196 /**
197 * @type {!Array.<string>}
198 * @private
199 * @constant
200 */
201 Dygraph.SHORT_MONTH_NAMES_ = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
202
203
204 /**
205 * Convert a JS date to a string appropriate to display on an axis that
206 * is displaying values at the stated granularity. This respects the
207 * labelsUTC option.
208 * @param {Date} date The date to format
209 * @param {number} granularity One of the Dygraph granularity constants
210 * @param {Dygraph} opts An options view
211 * @return {string} The date formatted as local time
212 * @private
213 */
214 Dygraph.dateAxisLabelFormatter = function(date, granularity, opts) {
215 var utc = opts('labelsUTC');
216 var accessors = utc ? Dygraph.DateAccessorsUTC : Dygraph.DateAccessorsLocal;
217
218 var year = accessors.getFullYear(date),
219 month = accessors.getMonth(date),
220 day = accessors.getDate(date),
221 hours = accessors.getHours(date),
222 mins = accessors.getMinutes(date),
223 secs = accessors.getSeconds(date),
224 millis = accessors.getSeconds(date);
225
226 if (granularity >= Dygraph.DECADAL) {
227 return '' + year;
228 } else if (granularity >= Dygraph.MONTHLY) {
229 return Dygraph.SHORT_MONTH_NAMES_[month] + '&#160;' + year;
230 } else {
231 var frac = hours * 3600 + mins * 60 + secs + 1e-3 * millis;
232 if (frac === 0 || granularity >= Dygraph.DAILY) {
233 // e.g. '21 Jan' (%d%b)
234 return Dygraph.zeropad(day) + '&#160;' + Dygraph.SHORT_MONTH_NAMES_[month];
235 } else {
236 return Dygraph.hmsString_(hours, mins, secs);
237 }
238 }
239 };
240 // alias in case anyone is referencing the old method.
241 Dygraph.dateAxisFormatter = Dygraph.dateAxisLabelFormatter;
242
243 /**
244 * Return a string version of a JS date for a value label. This respects the
245 * labelsUTC option.
246 * @param {Date} date The date to be formatted
247 * @param {Dygraph} opts An options view
248 * @private
249 */
250 Dygraph.dateValueFormatter = function(d, opts) {
251 return Dygraph.dateString_(d, opts('labelsUTC'));
252 };
253
254 /**
255 * Standard plotters. These may be used by clients.
256 * Available plotters are:
257 * - Dygraph.Plotters.linePlotter: draws central lines (most common)
258 * - Dygraph.Plotters.errorPlotter: draws error bars
259 * - Dygraph.Plotters.fillPlotter: draws fills under lines (used with fillGraph)
260 *
261 * By default, the plotter is [fillPlotter, errorPlotter, linePlotter].
262 * This causes all the lines to be drawn over all the fills/error bars.
263 */
264 Dygraph.Plotters = DygraphCanvasRenderer._Plotters;
265
266
267 // Default attribute values.
268 Dygraph.DEFAULT_ATTRS = {
269 highlightCircleSize: 3,
270 highlightSeriesOpts: null,
271 highlightSeriesBackgroundAlpha: 0.5,
272
273 labelsDivWidth: 250,
274 labelsDivStyles: {
275 // TODO(danvk): move defaults from createStatusMessage_ here.
276 },
277 labelsSeparateLines: false,
278 labelsShowZeroValues: true,
279 labelsKMB: false,
280 labelsKMG2: false,
281 showLabelsOnHighlight: true,
282
283 digitsAfterDecimal: 2,
284 maxNumberWidth: 6,
285 sigFigs: null,
286
287 strokeWidth: 1.0,
288 strokeBorderWidth: 0,
289 strokeBorderColor: "white",
290
291 axisTickSize: 3,
292 axisLabelFontSize: 14,
293 rightGap: 5,
294
295 showRoller: false,
296 xValueParser: Dygraph.dateParser,
297
298 delimiter: ',',
299
300 sigma: 2.0,
301 errorBars: false,
302 fractions: false,
303 wilsonInterval: true, // only relevant if fractions is true
304 customBars: false,
305 fillGraph: false,
306 fillAlpha: 0.15,
307 connectSeparatedPoints: false,
308
309 stackedGraph: false,
310 stackedGraphNaNFill: 'all',
311 hideOverlayOnMouseOut: true,
312
313 legend: 'onmouseover',
314 stepPlot: false,
315 avoidMinZero: false,
316 xRangePad: 0,
317 yRangePad: null,
318 drawAxesAtZero: false,
319
320 // Sizes of the various chart labels.
321 titleHeight: 28,
322 xLabelHeight: 18,
323 yLabelWidth: 18,
324
325 axisLineColor: "black",
326 axisLineWidth: 0.3,
327 gridLineWidth: 0.3,
328 axisLabelColor: "black",
329 axisLabelWidth: 50,
330 gridLineColor: "rgb(128,128,128)",
331
332 interactionModel: null, // will be set to Dygraph.Interaction.defaultModel
333 animatedZooms: false, // (for now)
334
335 // Range selector options
336 showRangeSelector: false,
337 rangeSelectorHeight: 40,
338 rangeSelectorPlotStrokeColor: "#808FAB",
339 rangeSelectorPlotFillColor: "#A7B1C4",
340 rangeSelectorBGStrokeColor: "gray",
341 rangeSelectorBGLineWidth: 1,
342 rangeSelectorPlotLineWidth:1.5,
343 rangeSelectorPlotGradientColor: "white",
344 rangeSelectorFGStrokeColor: "black",
345 rangeSelectorFGLineWidth: 1,
346 rangeSelectorAlpha: 0.6,
347 showInRangeSelector: null,
348
349 // The ordering here ensures that central lines always appear above any
350 // fill bars/error bars.
351 plotter: [
352 Dygraph.Plotters.fillPlotter,
353 Dygraph.Plotters.errorPlotter,
354 Dygraph.Plotters.linePlotter
355 ],
356
357 plugins: [ ],
358
359 // per-axis options
360 axes: {
361 x: {
362 pixelsPerLabel: 70,
363 axisLabelWidth: 60,
364 axisLabelFormatter: Dygraph.dateAxisLabelFormatter,
365 valueFormatter: Dygraph.dateValueFormatter,
366 drawGrid: true,
367 drawAxis: true,
368 independentTicks: true,
369 ticker: null // will be set in dygraph-tickers.js
370 },
371 y: {
372 axisLabelWidth: 50,
373 pixelsPerLabel: 30,
374 valueFormatter: Dygraph.numberValueFormatter,
375 axisLabelFormatter: Dygraph.numberAxisLabelFormatter,
376 drawGrid: true,
377 drawAxis: true,
378 independentTicks: true,
379 ticker: null // will be set in dygraph-tickers.js
380 },
381 y2: {
382 axisLabelWidth: 50,
383 pixelsPerLabel: 30,
384 valueFormatter: Dygraph.numberValueFormatter,
385 axisLabelFormatter: Dygraph.numberAxisLabelFormatter,
386 drawAxis: true, // only applies when there are two axes of data.
387 drawGrid: false,
388 independentTicks: false,
389 ticker: null // will be set in dygraph-tickers.js
390 }
391 }
392 };
393
394 // Directions for panning and zooming. Use bit operations when combined
395 // values are possible.
396 Dygraph.HORIZONTAL = 1;
397 Dygraph.VERTICAL = 2;
398
399 // Installed plugins, in order of precedence (most-general to most-specific).
400 // Plugins are installed after they are defined, in plugins/install.js.
401 Dygraph.PLUGINS = [
402 ];
403
404 // Used for initializing annotation CSS rules only once.
405 Dygraph.addedAnnotationCSS = false;
406
407 Dygraph.prototype.__old_init__ = function(div, file, labels, attrs) {
408 // Labels is no longer a constructor parameter, since it's typically set
409 // directly from the data source. It also conains a name for the x-axis,
410 // which the previous constructor form did not.
411 if (labels !== null) {
412 var new_labels = ["Date"];
413 for (var i = 0; i < labels.length; i++) new_labels.push(labels[i]);
414 Dygraph.update(attrs, { 'labels': new_labels });
415 }
416 this.__init__(div, file, attrs);
417 };
418
419 /**
420 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
421 * and context &lt;canvas&gt; inside of it. See the constructor for details.
422 * on the parameters.
423 * @param {Element} div the Element to render the graph into.
424 * @param {string | Function} file Source data
425 * @param {Object} attrs Miscellaneous other options
426 * @private
427 */
428 Dygraph.prototype.__init__ = function(div, file, attrs) {
429 // Support two-argument constructor
430 if (attrs === null || attrs === undefined) { attrs = {}; }
431
432 attrs = Dygraph.copyUserAttrs_(attrs);
433
434 if (typeof(div) == 'string') {
435 div = document.getElementById(div);
436 }
437
438 if (!div) {
439 console.error("Constructing dygraph with a non-existent div!");
440 return;
441 }
442
443 // Copy the important bits into the object
444 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
445 this.maindiv_ = div;
446 this.file_ = file;
447 this.rollPeriod_ = attrs.rollPeriod || Dygraph.DEFAULT_ROLL_PERIOD;
448 this.previousVerticalX_ = -1;
449 this.fractions_ = attrs.fractions || false;
450 this.dateWindow_ = attrs.dateWindow || null;
451
452 this.annotations_ = [];
453
454 // Zoomed indicators - These indicate when the graph has been zoomed and on what axis.
455 this.zoomed_x_ = false;
456 this.zoomed_y_ = false;
457
458 // Clear the div. This ensure that, if multiple dygraphs are passed the same
459 // div, then only one will be drawn.
460 div.innerHTML = "";
461
462 // For historical reasons, the 'width' and 'height' options trump all CSS
463 // rules _except_ for an explicit 'width' or 'height' on the div.
464 // As an added convenience, if the div has zero height (like <div></div> does
465 // without any styles), then we use a default height/width.
466 if (div.style.width === '' && attrs.width) {
467 div.style.width = attrs.width + "px";
468 }
469 if (div.style.height === '' && attrs.height) {
470 div.style.height = attrs.height + "px";
471 }
472 if (div.style.height === '' && div.clientHeight === 0) {
473 div.style.height = Dygraph.DEFAULT_HEIGHT + "px";
474 if (div.style.width === '') {
475 div.style.width = Dygraph.DEFAULT_WIDTH + "px";
476 }
477 }
478 // These will be zero if the dygraph's div is hidden. In that case,
479 // use the user-specified attributes if present. If not, use zero
480 // and assume the user will call resize to fix things later.
481 this.width_ = div.clientWidth || attrs.width || 0;
482 this.height_ = div.clientHeight || attrs.height || 0;
483
484 // TODO(danvk): set fillGraph to be part of attrs_ here, not user_attrs_.
485 if (attrs.stackedGraph) {
486 attrs.fillGraph = true;
487 // TODO(nikhilk): Add any other stackedGraph checks here.
488 }
489
490 // DEPRECATION WARNING: All option processing should be moved from
491 // attrs_ and user_attrs_ to options_, which holds all this information.
492 //
493 // Dygraphs has many options, some of which interact with one another.
494 // To keep track of everything, we maintain two sets of options:
495 //
496 // this.user_attrs_ only options explicitly set by the user.
497 // this.attrs_ defaults, options derived from user_attrs_, data.
498 //
499 // Options are then accessed this.attr_('attr'), which first looks at
500 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
501 // defaults without overriding behavior that the user specifically asks for.
502 this.user_attrs_ = {};
503 Dygraph.update(this.user_attrs_, attrs);
504
505 // This sequence ensures that Dygraph.DEFAULT_ATTRS is never modified.
506 this.attrs_ = {};
507 Dygraph.updateDeep(this.attrs_, Dygraph.DEFAULT_ATTRS);
508
509 this.boundaryIds_ = [];
510 this.setIndexByName_ = {};
511 this.datasetIndex_ = [];
512
513 this.registeredEvents_ = [];
514 this.eventListeners_ = {};
515
516 this.attributes_ = new DygraphOptions(this);
517
518 // Create the containing DIV and other interactive elements
519 this.createInterface_();
520
521 // Activate plugins.
522 this.plugins_ = [];
523 var plugins = Dygraph.PLUGINS.concat(this.getOption('plugins'));
524 for (var i = 0; i < plugins.length; i++) {
525 // the plugins option may contain either plugin classes or instances.
526 // Plugin instances contain an activate method.
527 var Plugin = plugins[i]; // either a constructor or an instance.
528 var pluginInstance;
529 if (typeof(Plugin.activate) !== 'undefined') {
530 pluginInstance = Plugin;
531 } else {
532 pluginInstance = new Plugin();
533 }
534
535 var pluginDict = {
536 plugin: pluginInstance,
537 events: {},
538 options: {},
539 pluginOptions: {}
540 };
541
542 var handlers = pluginInstance.activate(this);
543 for (var eventName in handlers) {
544 if (!handlers.hasOwnProperty(eventName)) continue;
545 // TODO(danvk): validate eventName.
546 pluginDict.events[eventName] = handlers[eventName];
547 }
548
549 this.plugins_.push(pluginDict);
550 }
551
552 // At this point, plugins can no longer register event handlers.
553 // Construct a map from event -> ordered list of [callback, plugin].
554 for (var i = 0; i < this.plugins_.length; i++) {
555 var plugin_dict = this.plugins_[i];
556 for (var eventName in plugin_dict.events) {
557 if (!plugin_dict.events.hasOwnProperty(eventName)) continue;
558 var callback = plugin_dict.events[eventName];
559
560 var pair = [plugin_dict.plugin, callback];
561 if (!(eventName in this.eventListeners_)) {
562 this.eventListeners_[eventName] = [pair];
563 } else {
564 this.eventListeners_[eventName].push(pair);
565 }
566 }
567 }
568
569 this.createDragInterface_();
570
571 this.start_();
572 };
573
574 /**
575 * Triggers a cascade of events to the various plugins which are interested in them.
576 * Returns true if the "default behavior" should be prevented, i.e. if one
577 * of the event listeners called event.preventDefault().
578 * @private
579 */
580 Dygraph.prototype.cascadeEvents_ = function(name, extra_props) {
581 if (!(name in this.eventListeners_)) return false;
582
583 // QUESTION: can we use objects & prototypes to speed this up?
584 var e = {
585 dygraph: this,
586 cancelable: false,
587 defaultPrevented: false,
588 preventDefault: function() {
589 if (!e.cancelable) throw "Cannot call preventDefault on non-cancelable event.";
590 e.defaultPrevented = true;
591 },
592 propagationStopped: false,
593 stopPropagation: function() {
594 e.propagationStopped = true;
595 }
596 };
597 Dygraph.update(e, extra_props);
598
599 var callback_plugin_pairs = this.eventListeners_[name];
600 if (callback_plugin_pairs) {
601 for (var i = callback_plugin_pairs.length - 1; i >= 0; i--) {
602 var plugin = callback_plugin_pairs[i][0];
603 var callback = callback_plugin_pairs[i][1];
604 callback.call(plugin, e);
605 if (e.propagationStopped) break;
606 }
607 }
608 return e.defaultPrevented;
609 };
610
611 /**
612 * Fetch a plugin instance of a particular class. Only for testing.
613 * @private
614 * @param {!Class} type The type of the plugin.
615 * @return {Object} Instance of the plugin, or null if there is none.
616 */
617 Dygraph.prototype.getPluginInstance_ = function(type) {
618 for (var i = 0; i < this.plugins_.length; i++) {
619 var p = this.plugins_[i];
620 if (p.plugin instanceof type) {
621 return p.plugin;
622 }
623 }
624 return null;
625 };
626
627 /**
628 * Returns the zoomed status of the chart for one or both axes.
629 *
630 * Axis is an optional parameter. Can be set to 'x' or 'y'.
631 *
632 * The zoomed status for an axis is set whenever a user zooms using the mouse
633 * or when the dateWindow or valueRange are updated (unless the
634 * isZoomedIgnoreProgrammaticZoom option is also specified).
635 */
636 Dygraph.prototype.isZoomed = function(axis) {
637 if (axis === null || axis === undefined) {
638 return this.zoomed_x_ || this.zoomed_y_;
639 }
640 if (axis === 'x') return this.zoomed_x_;
641 if (axis === 'y') return this.zoomed_y_;
642 throw "axis parameter is [" + axis + "] must be null, 'x' or 'y'.";
643 };
644
645 /**
646 * Returns information about the Dygraph object, including its containing ID.
647 */
648 Dygraph.prototype.toString = function() {
649 var maindiv = this.maindiv_;
650 var id = (maindiv && maindiv.id) ? maindiv.id : maindiv;
651 return "[Dygraph " + id + "]";
652 };
653
654 /**
655 * @private
656 * Returns the value of an option. This may be set by the user (either in the
657 * constructor or by calling updateOptions) or by dygraphs, and may be set to a
658 * per-series value.
659 * @param {string} name The name of the option, e.g. 'rollPeriod'.
660 * @param {string} [seriesName] The name of the series to which the option
661 * will be applied. If no per-series value of this option is available, then
662 * the global value is returned. This is optional.
663 * @return { ... } The value of the option.
664 */
665 Dygraph.prototype.attr_ = function(name, seriesName) {
666 if (DEBUG) {
667 if (typeof(Dygraph.OPTIONS_REFERENCE) === 'undefined') {
668 console.error('Must include options reference JS for testing');
669 } else if (!Dygraph.OPTIONS_REFERENCE.hasOwnProperty(name)) {
670 console.error('Dygraphs is using property ' + name + ', which has no ' +
671 'entry in the Dygraphs.OPTIONS_REFERENCE listing.');
672 // Only log this error once.
673 Dygraph.OPTIONS_REFERENCE[name] = true;
674 }
675 }
676 return seriesName ? this.attributes_.getForSeries(name, seriesName) : this.attributes_.get(name);
677 };
678
679 /**
680 * Returns the current value for an option, as set in the constructor or via
681 * updateOptions. You may pass in an (optional) series name to get per-series
682 * values for the option.
683 *
684 * All values returned by this method should be considered immutable. If you
685 * modify them, there is no guarantee that the changes will be honored or that
686 * dygraphs will remain in a consistent state. If you want to modify an option,
687 * use updateOptions() instead.
688 *
689 * @param {string} name The name of the option (e.g. 'strokeWidth')
690 * @param {string=} opt_seriesName Series name to get per-series values.
691 * @return {*} The value of the option.
692 */
693 Dygraph.prototype.getOption = function(name, opt_seriesName) {
694 return this.attr_(name, opt_seriesName);
695 };
696
697 /**
698 * Like getOption(), but specifically returns a number.
699 * This is a convenience function for working with the Closure Compiler.
700 * @param {string} name The name of the option (e.g. 'strokeWidth')
701 * @param {string=} opt_seriesName Series name to get per-series values.
702 * @return {number} The value of the option.
703 * @private
704 */
705 Dygraph.prototype.getNumericOption = function(name, opt_seriesName) {
706 return /** @type{number} */(this.getOption(name, opt_seriesName));
707 };
708
709 /**
710 * Like getOption(), but specifically returns a string.
711 * This is a convenience function for working with the Closure Compiler.
712 * @param {string} name The name of the option (e.g. 'strokeWidth')
713 * @param {string=} opt_seriesName Series name to get per-series values.
714 * @return {string} The value of the option.
715 * @private
716 */
717 Dygraph.prototype.getStringOption = function(name, opt_seriesName) {
718 return /** @type{string} */(this.getOption(name, opt_seriesName));
719 };
720
721 /**
722 * Like getOption(), but specifically returns a boolean.
723 * This is a convenience function for working with the Closure Compiler.
724 * @param {string} name The name of the option (e.g. 'strokeWidth')
725 * @param {string=} opt_seriesName Series name to get per-series values.
726 * @return {boolean} The value of the option.
727 * @private
728 */
729 Dygraph.prototype.getBooleanOption = function(name, opt_seriesName) {
730 return /** @type{boolean} */(this.getOption(name, opt_seriesName));
731 };
732
733 /**
734 * Like getOption(), but specifically returns a function.
735 * This is a convenience function for working with the Closure Compiler.
736 * @param {string} name The name of the option (e.g. 'strokeWidth')
737 * @param {string=} opt_seriesName Series name to get per-series values.
738 * @return {function(...)} The value of the option.
739 * @private
740 */
741 Dygraph.prototype.getFunctionOption = function(name, opt_seriesName) {
742 return /** @type{function(...)} */(this.getOption(name, opt_seriesName));
743 };
744
745 Dygraph.prototype.getOptionForAxis = function(name, axis) {
746 return this.attributes_.getForAxis(name, axis);
747 };
748
749 /**
750 * @private
751 * @param {string} axis The name of the axis (i.e. 'x', 'y' or 'y2')
752 * @return { ... } A function mapping string -> option value
753 */
754 Dygraph.prototype.optionsViewForAxis_ = function(axis) {
755 var self = this;
756 return function(opt) {
757 var axis_opts = self.user_attrs_.axes;
758 if (axis_opts && axis_opts[axis] && axis_opts[axis].hasOwnProperty(opt)) {
759 return axis_opts[axis][opt];
760 }
761
762 // I don't like that this is in a second spot.
763 if (axis === 'x' && opt === 'logscale') {
764 // return the default value.
765 // TODO(konigsberg): pull the default from a global default.
766 return false;
767 }
768
769 // user-specified attributes always trump defaults, even if they're less
770 // specific.
771 if (typeof(self.user_attrs_[opt]) != 'undefined') {
772 return self.user_attrs_[opt];
773 }
774
775 axis_opts = self.attrs_.axes;
776 if (axis_opts && axis_opts[axis] && axis_opts[axis].hasOwnProperty(opt)) {
777 return axis_opts[axis][opt];
778 }
779 // check old-style axis options
780 // TODO(danvk): add a deprecation warning if either of these match.
781 if (axis == 'y' && self.axes_[0].hasOwnProperty(opt)) {
782 return self.axes_[0][opt];
783 } else if (axis == 'y2' && self.axes_[1].hasOwnProperty(opt)) {
784 return self.axes_[1][opt];
785 }
786 return self.attr_(opt);
787 };
788 };
789
790 /**
791 * Returns the current rolling period, as set by the user or an option.
792 * @return {number} The number of points in the rolling window
793 */
794 Dygraph.prototype.rollPeriod = function() {
795 return this.rollPeriod_;
796 };
797
798 /**
799 * Returns the currently-visible x-range. This can be affected by zooming,
800 * panning or a call to updateOptions.
801 * Returns a two-element array: [left, right].
802 * If the Dygraph has dates on the x-axis, these will be millis since epoch.
803 */
804 Dygraph.prototype.xAxisRange = function() {
805 return this.dateWindow_ ? this.dateWindow_ : this.xAxisExtremes();
806 };
807
808 /**
809 * Returns the lower- and upper-bound x-axis values of the
810 * data set.
811 */
812 Dygraph.prototype.xAxisExtremes = function() {
813 var pad = this.getNumericOption('xRangePad') / this.plotter_.area.w;
814 if (this.numRows() === 0) {
815 return [0 - pad, 1 + pad];
816 }
817 var left = this.rawData_[0][0];
818 var right = this.rawData_[this.rawData_.length - 1][0];
819 if (pad) {
820 // Must keep this in sync with dygraph-layout _evaluateLimits()
821 var range = right - left;
822 left -= range * pad;
823 right += range * pad;
824 }
825 return [left, right];
826 };
827
828 /**
829 * Returns the currently-visible y-range for an axis. This can be affected by
830 * zooming, panning or a call to updateOptions. Axis indices are zero-based. If
831 * called with no arguments, returns the range of the first axis.
832 * Returns a two-element array: [bottom, top].
833 */
834 Dygraph.prototype.yAxisRange = function(idx) {
835 if (typeof(idx) == "undefined") idx = 0;
836 if (idx < 0 || idx >= this.axes_.length) {
837 return null;
838 }
839 var axis = this.axes_[idx];
840 return [ axis.computedValueRange[0], axis.computedValueRange[1] ];
841 };
842
843 /**
844 * Returns the currently-visible y-ranges for each axis. This can be affected by
845 * zooming, panning, calls to updateOptions, etc.
846 * Returns an array of [bottom, top] pairs, one for each y-axis.
847 */
848 Dygraph.prototype.yAxisRanges = function() {
849 var ret = [];
850 for (var i = 0; i < this.axes_.length; i++) {
851 ret.push(this.yAxisRange(i));
852 }
853 return ret;
854 };
855
856 // TODO(danvk): use these functions throughout dygraphs.
857 /**
858 * Convert from data coordinates to canvas/div X/Y coordinates.
859 * If specified, do this conversion for the coordinate system of a particular
860 * axis. Uses the first axis by default.
861 * Returns a two-element array: [X, Y]
862 *
863 * Note: use toDomXCoord instead of toDomCoords(x, null) and use toDomYCoord
864 * instead of toDomCoords(null, y, axis).
865 */
866 Dygraph.prototype.toDomCoords = function(x, y, axis) {
867 return [ this.toDomXCoord(x), this.toDomYCoord(y, axis) ];
868 };
869
870 /**
871 * Convert from data x coordinates to canvas/div X coordinate.
872 * If specified, do this conversion for the coordinate system of a particular
873 * axis.
874 * Returns a single value or null if x is null.
875 */
876 Dygraph.prototype.toDomXCoord = function(x) {
877 if (x === null) {
878 return null;
879 }
880
881 var area = this.plotter_.area;
882 var xRange = this.xAxisRange();
883 return area.x + (x - xRange[0]) / (xRange[1] - xRange[0]) * area.w;
884 };
885
886 /**
887 * Convert from data x coordinates to canvas/div Y coordinate and optional
888 * axis. Uses the first axis by default.
889 *
890 * returns a single value or null if y is null.
891 */
892 Dygraph.prototype.toDomYCoord = function(y, axis) {
893 var pct = this.toPercentYCoord(y, axis);
894
895 if (pct === null) {
896 return null;
897 }
898 var area = this.plotter_.area;
899 return area.y + pct * area.h;
900 };
901
902 /**
903 * Convert from canvas/div coords to data coordinates.
904 * If specified, do this conversion for the coordinate system of a particular
905 * axis. Uses the first axis by default.
906 * Returns a two-element array: [X, Y].
907 *
908 * Note: use toDataXCoord instead of toDataCoords(x, null) and use toDataYCoord
909 * instead of toDataCoords(null, y, axis).
910 */
911 Dygraph.prototype.toDataCoords = function(x, y, axis) {
912 return [ this.toDataXCoord(x), this.toDataYCoord(y, axis) ];
913 };
914
915 /**
916 * Convert from canvas/div x coordinate to data coordinate.
917 *
918 * If x is null, this returns null.
919 */
920 Dygraph.prototype.toDataXCoord = function(x) {
921 if (x === null) {
922 return null;
923 }
924
925 var area = this.plotter_.area;
926 var xRange = this.xAxisRange();
927
928 if (!this.attributes_.getForAxis("logscale", 'x')) {
929 return xRange[0] + (x - area.x) / area.w * (xRange[1] - xRange[0]);
930 } else {
931 // TODO: remove duplicate code?
932 // Computing the inverse of toDomCoord.
933 var pct = (x - area.x) / area.w;
934
935 // Computing the inverse of toPercentXCoord. The function was arrived at with
936 // the following steps:
937 //
938 // Original calcuation:
939 // pct = (log(x) - log(xRange[0])) / (log(xRange[1]) - log(xRange[0])));
940 //
941 // Multiply both sides by the right-side demoninator.
942 // pct * (log(xRange[1] - log(xRange[0]))) = log(x) - log(xRange[0])
943 //
944 // add log(xRange[0]) to both sides
945 // log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0])) = log(x);
946 //
947 // Swap both sides of the equation,
948 // log(x) = log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0]))
949 //
950 // Use both sides as the exponent in 10^exp and we're done.
951 // x = 10 ^ (log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0])))
952 var logr0 = Dygraph.log10(xRange[0]);
953 var logr1 = Dygraph.log10(xRange[1]);
954 var exponent = logr0 + (pct * (logr1 - logr0));
955 var value = Math.pow(Dygraph.LOG_SCALE, exponent);
956 return value;
957 }
958 };
959
960 /**
961 * Convert from canvas/div y coord to value.
962 *
963 * If y is null, this returns null.
964 * if axis is null, this uses the first axis.
965 */
966 Dygraph.prototype.toDataYCoord = function(y, axis) {
967 if (y === null) {
968 return null;
969 }
970
971 var area = this.plotter_.area;
972 var yRange = this.yAxisRange(axis);
973
974 if (typeof(axis) == "undefined") axis = 0;
975 if (!this.attributes_.getForAxis("logscale", axis)) {
976 return yRange[0] + (area.y + area.h - y) / area.h * (yRange[1] - yRange[0]);
977 } else {
978 // Computing the inverse of toDomCoord.
979 var pct = (y - area.y) / area.h;
980
981 // Computing the inverse of toPercentYCoord. The function was arrived at with
982 // the following steps:
983 //
984 // Original calcuation:
985 // pct = (log(yRange[1]) - log(y)) / (log(yRange[1]) - log(yRange[0]));
986 //
987 // Multiply both sides by the right-side demoninator.
988 // pct * (log(yRange[1]) - log(yRange[0])) = log(yRange[1]) - log(y);
989 //
990 // subtract log(yRange[1]) from both sides.
991 // (pct * (log(yRange[1]) - log(yRange[0]))) - log(yRange[1]) = -log(y);
992 //
993 // and multiply both sides by -1.
994 // log(yRange[1]) - (pct * (logr1 - log(yRange[0])) = log(y);
995 //
996 // Swap both sides of the equation,
997 // log(y) = log(yRange[1]) - (pct * (log(yRange[1]) - log(yRange[0])));
998 //
999 // Use both sides as the exponent in 10^exp and we're done.
1000 // y = 10 ^ (log(yRange[1]) - (pct * (log(yRange[1]) - log(yRange[0]))));
1001 var logr0 = Dygraph.log10(yRange[0]);
1002 var logr1 = Dygraph.log10(yRange[1]);
1003 var exponent = logr1 - (pct * (logr1 - logr0));
1004 var value = Math.pow(Dygraph.LOG_SCALE, exponent);
1005 return value;
1006 }
1007 };
1008
1009 /**
1010 * Converts a y for an axis to a percentage from the top to the
1011 * bottom of the drawing area.
1012 *
1013 * If the coordinate represents a value visible on the canvas, then
1014 * the value will be between 0 and 1, where 0 is the top of the canvas.
1015 * However, this method will return values outside the range, as
1016 * values can fall outside the canvas.
1017 *
1018 * If y is null, this returns null.
1019 * if axis is null, this uses the first axis.
1020 *
1021 * @param {number} y The data y-coordinate.
1022 * @param {number} [axis] The axis number on which the data coordinate lives.
1023 * @return {number} A fraction in [0, 1] where 0 = the top edge.
1024 */
1025 Dygraph.prototype.toPercentYCoord = function(y, axis) {
1026 if (y === null) {
1027 return null;
1028 }
1029 if (typeof(axis) == "undefined") axis = 0;
1030
1031 var yRange = this.yAxisRange(axis);
1032
1033 var pct;
1034 var logscale = this.attributes_.getForAxis("logscale", axis);
1035 if (logscale) {
1036 var logr0 = Dygraph.log10(yRange[0]);
1037 var logr1 = Dygraph.log10(yRange[1]);
1038 pct = (logr1 - Dygraph.log10(y)) / (logr1 - logr0);
1039 } else {
1040 // yRange[1] - y is unit distance from the bottom.
1041 // yRange[1] - yRange[0] is the scale of the range.
1042 // (yRange[1] - y) / (yRange[1] - yRange[0]) is the % from the bottom.
1043 pct = (yRange[1] - y) / (yRange[1] - yRange[0]);
1044 }
1045 return pct;
1046 };
1047
1048 /**
1049 * Converts an x value to a percentage from the left to the right of
1050 * the drawing area.
1051 *
1052 * If the coordinate represents a value visible on the canvas, then
1053 * the value will be between 0 and 1, where 0 is the left of the canvas.
1054 * However, this method will return values outside the range, as
1055 * values can fall outside the canvas.
1056 *
1057 * If x is null, this returns null.
1058 * @param {number} x The data x-coordinate.
1059 * @return {number} A fraction in [0, 1] where 0 = the left edge.
1060 */
1061 Dygraph.prototype.toPercentXCoord = function(x) {
1062 if (x === null) {
1063 return null;
1064 }
1065
1066 var xRange = this.xAxisRange();
1067 var pct;
1068 var logscale = this.attributes_.getForAxis("logscale", 'x') ;
1069 if (logscale === true) { // logscale can be null so we test for true explicitly.
1070 var logr0 = Dygraph.log10(xRange[0]);
1071 var logr1 = Dygraph.log10(xRange[1]);
1072 pct = (Dygraph.log10(x) - logr0) / (logr1 - logr0);
1073 } else {
1074 // x - xRange[0] is unit distance from the left.
1075 // xRange[1] - xRange[0] is the scale of the range.
1076 // The full expression below is the % from the left.
1077 pct = (x - xRange[0]) / (xRange[1] - xRange[0]);
1078 }
1079 return pct;
1080 };
1081
1082 /**
1083 * Returns the number of columns (including the independent variable).
1084 * @return {number} The number of columns.
1085 */
1086 Dygraph.prototype.numColumns = function() {
1087 if (!this.rawData_) return 0;
1088 return this.rawData_[0] ? this.rawData_[0].length : this.attr_("labels").length;
1089 };
1090
1091 /**
1092 * Returns the number of rows (excluding any header/label row).
1093 * @return {number} The number of rows, less any header.
1094 */
1095 Dygraph.prototype.numRows = function() {
1096 if (!this.rawData_) return 0;
1097 return this.rawData_.length;
1098 };
1099
1100 /**
1101 * Returns the value in the given row and column. If the row and column exceed
1102 * the bounds on the data, returns null. Also returns null if the value is
1103 * missing.
1104 * @param {number} row The row number of the data (0-based). Row 0 is the
1105 * first row of data, not a header row.
1106 * @param {number} col The column number of the data (0-based)
1107 * @return {number} The value in the specified cell or null if the row/col
1108 * were out of range.
1109 */
1110 Dygraph.prototype.getValue = function(row, col) {
1111 if (row < 0 || row > this.rawData_.length) return null;
1112 if (col < 0 || col > this.rawData_[row].length) return null;
1113
1114 return this.rawData_[row][col];
1115 };
1116
1117 /**
1118 * Generates interface elements for the Dygraph: a containing div, a div to
1119 * display the current point, and a textbox to adjust the rolling average
1120 * period. Also creates the Renderer/Layout elements.
1121 * @private
1122 */
1123 Dygraph.prototype.createInterface_ = function() {
1124 // Create the all-enclosing graph div
1125 var enclosing = this.maindiv_;
1126
1127 this.graphDiv = document.createElement("div");
1128
1129 // TODO(danvk): any other styles that are useful to set here?
1130 this.graphDiv.style.textAlign = 'left'; // This is a CSS "reset"
1131 this.graphDiv.style.position = 'relative';
1132 enclosing.appendChild(this.graphDiv);
1133
1134 // Create the canvas for interactive parts of the chart.
1135 this.canvas_ = Dygraph.createCanvas();
1136 this.canvas_.style.position = "absolute";
1137
1138 // ... and for static parts of the chart.
1139 this.hidden_ = this.createPlotKitCanvas_(this.canvas_);
1140
1141 this.canvas_ctx_ = Dygraph.getContext(this.canvas_);
1142 this.hidden_ctx_ = Dygraph.getContext(this.hidden_);
1143
1144 this.resizeElements_();
1145
1146 // The interactive parts of the graph are drawn on top of the chart.
1147 this.graphDiv.appendChild(this.hidden_);
1148 this.graphDiv.appendChild(this.canvas_);
1149 this.mouseEventElement_ = this.createMouseEventElement_();
1150
1151 // Create the grapher
1152 this.layout_ = new DygraphLayout(this);
1153
1154 var dygraph = this;
1155
1156 this.mouseMoveHandler_ = function(e) {
1157 dygraph.mouseMove_(e);
1158 };
1159
1160 this.mouseOutHandler_ = function(e) {
1161 // The mouse has left the chart if:
1162 // 1. e.target is inside the chart
1163 // 2. e.relatedTarget is outside the chart
1164 var target = e.target || e.fromElement;
1165 var relatedTarget = e.relatedTarget || e.toElement;
1166 if (Dygraph.isNodeContainedBy(target, dygraph.graphDiv) &&
1167 !Dygraph.isNodeContainedBy(relatedTarget, dygraph.graphDiv)) {
1168 dygraph.mouseOut_(e);
1169 }
1170 };
1171
1172 this.addAndTrackEvent(window, 'mouseout', this.mouseOutHandler_);
1173 this.addAndTrackEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler_);
1174
1175 // Don't recreate and register the resize handler on subsequent calls.
1176 // This happens when the graph is resized.
1177 if (!this.resizeHandler_) {
1178 this.resizeHandler_ = function(e) {
1179 dygraph.resize();
1180 };
1181
1182 // Update when the window is resized.
1183 // TODO(danvk): drop frames depending on complexity of the chart.
1184 this.addAndTrackEvent(window, 'resize', this.resizeHandler_);
1185 }
1186 };
1187
1188 Dygraph.prototype.resizeElements_ = function() {
1189 this.graphDiv.style.width = this.width_ + "px";
1190 this.graphDiv.style.height = this.height_ + "px";
1191
1192 var canvasScale = Dygraph.getContextPixelRatio(this.canvas_ctx_);
1193 this.canvas_.width = this.width_ * canvasScale;
1194 this.canvas_.height = this.height_ * canvasScale;
1195 this.canvas_.style.width = this.width_ + "px"; // for IE
1196 this.canvas_.style.height = this.height_ + "px"; // for IE
1197 if (canvasScale !== 1) {
1198 this.canvas_ctx_.scale(canvasScale, canvasScale);
1199 }
1200
1201 var hiddenScale = Dygraph.getContextPixelRatio(this.hidden_ctx_);
1202 this.hidden_.width = this.width_ * hiddenScale;
1203 this.hidden_.height = this.height_ * hiddenScale;
1204 this.hidden_.style.width = this.width_ + "px"; // for IE
1205 this.hidden_.style.height = this.height_ + "px"; // for IE
1206 if (hiddenScale !== 1) {
1207 this.hidden_ctx_.scale(hiddenScale, hiddenScale);
1208 }
1209 };
1210
1211 /**
1212 * Detach DOM elements in the dygraph and null out all data references.
1213 * Calling this when you're done with a dygraph can dramatically reduce memory
1214 * usage. See, e.g., the tests/perf.html example.
1215 */
1216 Dygraph.prototype.destroy = function() {
1217 this.canvas_ctx_.restore();
1218 this.hidden_ctx_.restore();
1219
1220 // Destroy any plugins, in the reverse order that they were registered.
1221 for (var i = this.plugins_.length - 1; i >= 0; i--) {
1222 var p = this.plugins_.pop();
1223 if (p.plugin.destroy) p.plugin.destroy();
1224 }
1225
1226 var removeRecursive = function(node) {
1227 while (node.hasChildNodes()) {
1228 removeRecursive(node.firstChild);
1229 node.removeChild(node.firstChild);
1230 }
1231 };
1232
1233 this.removeTrackedEvents_();
1234
1235 // remove mouse event handlers (This may not be necessary anymore)
1236 Dygraph.removeEvent(window, 'mouseout', this.mouseOutHandler_);
1237 Dygraph.removeEvent(this.mouseEventElement_, 'mousemove', this.mouseMoveHandler_);
1238
1239 // remove window handlers
1240 Dygraph.removeEvent(window,'resize', this.resizeHandler_);
1241 this.resizeHandler_ = null;
1242
1243 removeRecursive(this.maindiv_);
1244
1245 var nullOut = function(obj) {
1246 for (var n in obj) {
1247 if (typeof(obj[n]) === 'object') {
1248 obj[n] = null;
1249 }
1250 }
1251 };
1252 // These may not all be necessary, but it can't hurt...
1253 nullOut(this.layout_);
1254 nullOut(this.plotter_);
1255 nullOut(this);
1256 };
1257
1258 /**
1259 * Creates the canvas on which the chart will be drawn. Only the Renderer ever
1260 * draws on this particular canvas. All Dygraph work (i.e. drawing hover dots
1261 * or the zoom rectangles) is done on this.canvas_.
1262 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
1263 * @return {Object} The newly-created canvas
1264 * @private
1265 */
1266 Dygraph.prototype.createPlotKitCanvas_ = function(canvas) {
1267 var h = Dygraph.createCanvas();
1268 h.style.position = "absolute";
1269 // TODO(danvk): h should be offset from canvas. canvas needs to include
1270 // some extra area to make it easier to zoom in on the far left and far
1271 // right. h needs to be precisely the plot area, so that clipping occurs.
1272 h.style.top = canvas.style.top;
1273 h.style.left = canvas.style.left;
1274 h.width = this.width_;
1275 h.height = this.height_;
1276 h.style.width = this.width_ + "px"; // for IE
1277 h.style.height = this.height_ + "px"; // for IE
1278 return h;
1279 };
1280
1281 /**
1282 * Creates an overlay element used to handle mouse events.
1283 * @return {Object} The mouse event element.
1284 * @private
1285 */
1286 Dygraph.prototype.createMouseEventElement_ = function() {
1287 return this.canvas_;
1288 };
1289
1290 /**
1291 * Generate a set of distinct colors for the data series. This is done with a
1292 * color wheel. Saturation/Value are customizable, and the hue is
1293 * equally-spaced around the color wheel. If a custom set of colors is
1294 * specified, that is used instead.
1295 * @private
1296 */
1297 Dygraph.prototype.setColors_ = function() {
1298 var labels = this.getLabels();
1299 var num = labels.length - 1;
1300 this.colors_ = [];
1301 this.colorsMap_ = {};
1302
1303 // These are used for when no custom colors are specified.
1304 var sat = this.getNumericOption('colorSaturation') || 1.0;
1305 var val = this.getNumericOption('colorValue') || 0.5;
1306 var half = Math.ceil(num / 2);
1307
1308 var colors = this.getOption('colors');
1309 var visibility = this.visibility();
1310 for (var i = 0; i < num; i++) {
1311 if (!visibility[i]) {
1312 continue;
1313 }
1314 var label = labels[i + 1];
1315 var colorStr = this.attributes_.getForSeries('color', label);
1316 if (!colorStr) {
1317 if (colors) {
1318 colorStr = colors[i % colors.length];
1319 } else {
1320 // alternate colors for high contrast.
1321 var idx = i % 2 ? (half + (i + 1)/ 2) : Math.ceil((i + 1) / 2);
1322 var hue = (1.0 * idx / (1 + num));
1323 colorStr = Dygraph.hsvToRGB(hue, sat, val);
1324 }
1325 }
1326 this.colors_.push(colorStr);
1327 this.colorsMap_[label] = colorStr;
1328 }
1329 };
1330
1331 /**
1332 * Return the list of colors. This is either the list of colors passed in the
1333 * attributes or the autogenerated list of rgb(r,g,b) strings.
1334 * This does not return colors for invisible series.
1335 * @return {Array.<string>} The list of colors.
1336 */
1337 Dygraph.prototype.getColors = function() {
1338 return this.colors_;
1339 };
1340
1341 /**
1342 * Returns a few attributes of a series, i.e. its color, its visibility, which
1343 * axis it's assigned to, and its column in the original data.
1344 * Returns null if the series does not exist.
1345 * Otherwise, returns an object with column, visibility, color and axis properties.
1346 * The "axis" property will be set to 1 for y1 and 2 for y2.
1347 * The "column" property can be fed back into getValue(row, column) to get
1348 * values for this series.
1349 */
1350 Dygraph.prototype.getPropertiesForSeries = function(series_name) {
1351 var idx = -1;
1352 var labels = this.getLabels();
1353 for (var i = 1; i < labels.length; i++) {
1354 if (labels[i] == series_name) {
1355 idx = i;
1356 break;
1357 }
1358 }
1359 if (idx == -1) return null;
1360
1361 return {
1362 name: series_name,
1363 column: idx,
1364 visible: this.visibility()[idx - 1],
1365 color: this.colorsMap_[series_name],
1366 axis: 1 + this.attributes_.axisForSeries(series_name)
1367 };
1368 };
1369
1370 /**
1371 * Create the text box to adjust the averaging period
1372 * @private
1373 */
1374 Dygraph.prototype.createRollInterface_ = function() {
1375 // Create a roller if one doesn't exist already.
1376 if (!this.roller_) {
1377 this.roller_ = document.createElement("input");
1378 this.roller_.type = "text";
1379 this.roller_.style.display = "none";
1380 this.graphDiv.appendChild(this.roller_);
1381 }
1382
1383 var display = this.getBooleanOption('showRoller') ? 'block' : 'none';
1384
1385 var area = this.plotter_.area;
1386 var textAttr = { "position": "absolute",
1387 "zIndex": 10,
1388 "top": (area.y + area.h - 25) + "px",
1389 "left": (area.x + 1) + "px",
1390 "display": display
1391 };
1392 this.roller_.size = "2";
1393 this.roller_.value = this.rollPeriod_;
1394 for (var name in textAttr) {
1395 if (textAttr.hasOwnProperty(name)) {
1396 this.roller_.style[name] = textAttr[name];
1397 }
1398 }
1399
1400 var dygraph = this;
1401 this.roller_.onchange = function() { dygraph.adjustRoll(dygraph.roller_.value); };
1402 };
1403
1404 /**
1405 * Set up all the mouse handlers needed to capture dragging behavior for zoom
1406 * events.
1407 * @private
1408 */
1409 Dygraph.prototype.createDragInterface_ = function() {
1410 var context = {
1411 // Tracks whether the mouse is down right now
1412 isZooming: false,
1413 isPanning: false, // is this drag part of a pan?
1414 is2DPan: false, // if so, is that pan 1- or 2-dimensional?
1415 dragStartX: null, // pixel coordinates
1416 dragStartY: null, // pixel coordinates
1417 dragEndX: null, // pixel coordinates
1418 dragEndY: null, // pixel coordinates
1419 dragDirection: null,
1420 prevEndX: null, // pixel coordinates
1421 prevEndY: null, // pixel coordinates
1422 prevDragDirection: null,
1423 cancelNextDblclick: false, // see comment in dygraph-interaction-model.js
1424
1425 // The value on the left side of the graph when a pan operation starts.
1426 initialLeftmostDate: null,
1427
1428 // The number of units each pixel spans. (This won't be valid for log
1429 // scales)
1430 xUnitsPerPixel: null,
1431
1432 // TODO(danvk): update this comment
1433 // The range in second/value units that the viewport encompasses during a
1434 // panning operation.
1435 dateRange: null,
1436
1437 // Top-left corner of the canvas, in DOM coords
1438 // TODO(konigsberg): Rename topLeftCanvasX, topLeftCanvasY.
1439 px: 0,
1440 py: 0,
1441
1442 // Values for use with panEdgeFraction, which limit how far outside the
1443 // graph's data boundaries it can be panned.
1444 boundedDates: null, // [minDate, maxDate]
1445 boundedValues: null, // [[minValue, maxValue] ...]
1446
1447 // We cover iframes during mouse interactions. See comments in
1448 // dygraph-utils.js for more info on why this is a good idea.
1449 tarp: new Dygraph.IFrameTarp(),
1450
1451 // contextB is the same thing as this context object but renamed.
1452 initializeMouseDown: function(event, g, contextB) {
1453 // prevents mouse drags from selecting page text.
1454 if (event.preventDefault) {
1455 event.preventDefault(); // Firefox, Chrome, etc.
1456 } else {
1457 event.returnValue = false; // IE
1458 event.cancelBubble = true;
1459 }
1460
1461 var canvasPos = Dygraph.findPos(g.canvas_);
1462 contextB.px = canvasPos.x;
1463 contextB.py = canvasPos.y;
1464 contextB.dragStartX = Dygraph.dragGetX_(event, contextB);
1465 contextB.dragStartY = Dygraph.dragGetY_(event, contextB);
1466 contextB.cancelNextDblclick = false;
1467 contextB.tarp.cover();
1468 },
1469 destroy: function() {
1470 var context = this;
1471 if (context.isZooming || context.isPanning) {
1472 context.isZooming = false;
1473 context.dragStartX = null;
1474 context.dragStartY = null;
1475 }
1476
1477 if (context.isPanning) {
1478 context.isPanning = false;
1479 context.draggingDate = null;
1480 context.dateRange = null;
1481 for (var i = 0; i < self.axes_.length; i++) {
1482 delete self.axes_[i].draggingValue;
1483 delete self.axes_[i].dragValueRange;
1484 }
1485 }
1486
1487 context.tarp.uncover();
1488 }
1489 };
1490
1491 var interactionModel = this.getOption("interactionModel");
1492
1493 // Self is the graph.
1494 var self = this;
1495
1496 // Function that binds the graph and context to the handler.
1497 var bindHandler = function(handler) {
1498 return function(event) {
1499 handler(event, self, context);
1500 };
1501 };
1502
1503 for (var eventName in interactionModel) {
1504 if (!interactionModel.hasOwnProperty(eventName)) continue;
1505 this.addAndTrackEvent(this.mouseEventElement_, eventName,
1506 bindHandler(interactionModel[eventName]));
1507 }
1508
1509 // If the user releases the mouse button during a drag, but not over the
1510 // canvas, then it doesn't count as a zooming action.
1511 if (!interactionModel.willDestroyContextMyself) {
1512 var mouseUpHandler = function(event) {
1513 context.destroy();
1514 };
1515
1516 this.addAndTrackEvent(document, 'mouseup', mouseUpHandler);
1517 }
1518 };
1519
1520 /**
1521 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
1522 * up any previous zoom rectangles that were drawn. This could be optimized to
1523 * avoid extra redrawing, but it's tricky to avoid interactions with the status
1524 * dots.
1525 *
1526 * @param {number} direction the direction of the zoom rectangle. Acceptable
1527 * values are Dygraph.HORIZONTAL and Dygraph.VERTICAL.
1528 * @param {number} startX The X position where the drag started, in canvas
1529 * coordinates.
1530 * @param {number} endX The current X position of the drag, in canvas coords.
1531 * @param {number} startY The Y position where the drag started, in canvas
1532 * coordinates.
1533 * @param {number} endY The current Y position of the drag, in canvas coords.
1534 * @param {number} prevDirection the value of direction on the previous call to
1535 * this function. Used to avoid excess redrawing
1536 * @param {number} prevEndX The value of endX on the previous call to this
1537 * function. Used to avoid excess redrawing
1538 * @param {number} prevEndY The value of endY on the previous call to this
1539 * function. Used to avoid excess redrawing
1540 * @private
1541 */
1542 Dygraph.prototype.drawZoomRect_ = function(direction, startX, endX, startY,
1543 endY, prevDirection, prevEndX,
1544 prevEndY) {
1545 var ctx = this.canvas_ctx_;
1546
1547 // Clean up from the previous rect if necessary
1548 if (prevDirection == Dygraph.HORIZONTAL) {
1549 ctx.clearRect(Math.min(startX, prevEndX), this.layout_.getPlotArea().y,
1550 Math.abs(startX - prevEndX), this.layout_.getPlotArea().h);
1551 } else if (prevDirection == Dygraph.VERTICAL) {
1552 ctx.clearRect(this.layout_.getPlotArea().x, Math.min(startY, prevEndY),
1553 this.layout_.getPlotArea().w, Math.abs(startY - prevEndY));
1554 }
1555
1556 // Draw a light-grey rectangle to show the new viewing area
1557 if (direction == Dygraph.HORIZONTAL) {
1558 if (endX && startX) {
1559 ctx.fillStyle = "rgba(128,128,128,0.33)";
1560 ctx.fillRect(Math.min(startX, endX), this.layout_.getPlotArea().y,
1561 Math.abs(endX - startX), this.layout_.getPlotArea().h);
1562 }
1563 } else if (direction == Dygraph.VERTICAL) {
1564 if (endY && startY) {
1565 ctx.fillStyle = "rgba(128,128,128,0.33)";
1566 ctx.fillRect(this.layout_.getPlotArea().x, Math.min(startY, endY),
1567 this.layout_.getPlotArea().w, Math.abs(endY - startY));
1568 }
1569 }
1570 };
1571
1572 /**
1573 * Clear the zoom rectangle (and perform no zoom).
1574 * @private
1575 */
1576 Dygraph.prototype.clearZoomRect_ = function() {
1577 this.currentZoomRectArgs_ = null;
1578 this.canvas_ctx_.clearRect(0, 0, this.width_, this.height_);
1579 };
1580
1581 /**
1582 * Zoom to something containing [lowX, highX]. These are pixel coordinates in
1583 * the canvas. The exact zoom window may be slightly larger if there are no data
1584 * points near lowX or highX. Don't confuse this function with doZoomXDates,
1585 * which accepts dates that match the raw data. This function redraws the graph.
1586 *
1587 * @param {number} lowX The leftmost pixel value that should be visible.
1588 * @param {number} highX The rightmost pixel value that should be visible.
1589 * @private
1590 */
1591 Dygraph.prototype.doZoomX_ = function(lowX, highX) {
1592 this.currentZoomRectArgs_ = null;
1593 // Find the earliest and latest dates contained in this canvasx range.
1594 // Convert the call to date ranges of the raw data.
1595 var minDate = this.toDataXCoord(lowX);
1596 var maxDate = this.toDataXCoord(highX);
1597 this.doZoomXDates_(minDate, maxDate);
1598 };
1599
1600 /**
1601 * Zoom to something containing [minDate, maxDate] values. Don't confuse this
1602 * method with doZoomX which accepts pixel coordinates. This function redraws
1603 * the graph.
1604 *
1605 * @param {number} minDate The minimum date that should be visible.
1606 * @param {number} maxDate The maximum date that should be visible.
1607 * @private
1608 */
1609 Dygraph.prototype.doZoomXDates_ = function(minDate, maxDate) {
1610 // TODO(danvk): when xAxisRange is null (i.e. "fit to data", the animation
1611 // can produce strange effects. Rather than the x-axis transitioning slowly
1612 // between values, it can jerk around.)
1613 var old_window = this.xAxisRange();
1614 var new_window = [minDate, maxDate];
1615 this.zoomed_x_ = true;
1616 var that = this;
1617 this.doAnimatedZoom(old_window, new_window, null, null, function() {
1618 if (that.getFunctionOption("zoomCallback")) {
1619 that.getFunctionOption("zoomCallback").call(that,
1620 minDate, maxDate, that.yAxisRanges());
1621 }
1622 });
1623 };
1624
1625 /**
1626 * Zoom to something containing [lowY, highY]. These are pixel coordinates in
1627 * the canvas. This function redraws the graph.
1628 *
1629 * @param {number} lowY The topmost pixel value that should be visible.
1630 * @param {number} highY The lowest pixel value that should be visible.
1631 * @private
1632 */
1633 Dygraph.prototype.doZoomY_ = function(lowY, highY) {
1634 this.currentZoomRectArgs_ = null;
1635 // Find the highest and lowest values in pixel range for each axis.
1636 // Note that lowY (in pixels) corresponds to the max Value (in data coords).
1637 // This is because pixels increase as you go down on the screen, whereas data
1638 // coordinates increase as you go up the screen.
1639 var oldValueRanges = this.yAxisRanges();
1640 var newValueRanges = [];
1641 for (var i = 0; i < this.axes_.length; i++) {
1642 var hi = this.toDataYCoord(lowY, i);
1643 var low = this.toDataYCoord(highY, i);
1644 newValueRanges.push([low, hi]);
1645 }
1646
1647 this.zoomed_y_ = true;
1648 var that = this;
1649 this.doAnimatedZoom(null, null, oldValueRanges, newValueRanges, function() {
1650 if (that.getFunctionOption("zoomCallback")) {
1651 var xRange = that.xAxisRange();
1652 that.getFunctionOption("zoomCallback").call(that,
1653 xRange[0], xRange[1], that.yAxisRanges());
1654 }
1655 });
1656 };
1657
1658 /**
1659 * Transition function to use in animations. Returns values between 0.0
1660 * (totally old values) and 1.0 (totally new values) for each frame.
1661 * @private
1662 */
1663 Dygraph.zoomAnimationFunction = function(frame, numFrames) {
1664 var k = 1.5;
1665 return (1.0 - Math.pow(k, -frame)) / (1.0 - Math.pow(k, -numFrames));
1666 };
1667
1668 /**
1669 * Reset the zoom to the original view coordinates. This is the same as
1670 * double-clicking on the graph.
1671 */
1672 Dygraph.prototype.resetZoom = function() {
1673 var dirty = false, dirtyX = false, dirtyY = false;
1674 if (this.dateWindow_ !== null) {
1675 dirty = true;
1676 dirtyX = true;
1677 }
1678
1679 for (var i = 0; i < this.axes_.length; i++) {
1680 if (typeof(this.axes_[i].valueWindow) !== 'undefined' && this.axes_[i].valueWindow !== null) {
1681 dirty = true;
1682 dirtyY = true;
1683 }
1684 }
1685
1686 // Clear any selection, since it's likely to be drawn in the wrong place.
1687 this.clearSelection();
1688
1689 if (dirty) {
1690 this.zoomed_x_ = false;
1691 this.zoomed_y_ = false;
1692
1693 var minDate = this.rawData_[0][0];
1694 var maxDate = this.rawData_[this.rawData_.length - 1][0];
1695
1696 // With only one frame, don't bother calculating extreme ranges.
1697 // TODO(danvk): merge this block w/ the code below.
1698 if (!this.getBooleanOption("animatedZooms")) {
1699 this.dateWindow_ = null;
1700 for (i = 0; i < this.axes_.length; i++) {
1701 if (this.axes_[i].valueWindow !== null) {
1702 delete this.axes_[i].valueWindow;
1703 }
1704 }
1705 this.drawGraph_();
1706 if (this.getFunctionOption("zoomCallback")) {
1707 this.getFunctionOption("zoomCallback").call(this,
1708 minDate, maxDate, this.yAxisRanges());
1709 }
1710 return;
1711 }
1712
1713 var oldWindow=null, newWindow=null, oldValueRanges=null, newValueRanges=null;
1714 if (dirtyX) {
1715 oldWindow = this.xAxisRange();
1716 newWindow = [minDate, maxDate];
1717 }
1718
1719 if (dirtyY) {
1720 oldValueRanges = this.yAxisRanges();
1721 // TODO(danvk): this is pretty inefficient
1722 var packed = this.gatherDatasets_(this.rolledSeries_, null);
1723 var extremes = packed.extremes;
1724
1725 // this has the side-effect of modifying this.axes_.
1726 // this doesn't make much sense in this context, but it's convenient (we
1727 // need this.axes_[*].extremeValues) and not harmful since we'll be
1728 // calling drawGraph_ shortly, which clobbers these values.
1729 this.computeYAxisRanges_(extremes);
1730
1731 newValueRanges = [];
1732 for (i = 0; i < this.axes_.length; i++) {
1733 var axis = this.axes_[i];
1734 newValueRanges.push((axis.valueRange !== null &&
1735 axis.valueRange !== undefined) ?
1736 axis.valueRange : axis.extremeRange);
1737 }
1738 }
1739
1740 var that = this;
1741 this.doAnimatedZoom(oldWindow, newWindow, oldValueRanges, newValueRanges,
1742 function() {
1743 that.dateWindow_ = null;
1744 for (var i = 0; i < that.axes_.length; i++) {
1745 if (that.axes_[i].valueWindow !== null) {
1746 delete that.axes_[i].valueWindow;
1747 }
1748 }
1749 if (that.getFunctionOption("zoomCallback")) {
1750 that.getFunctionOption("zoomCallback").call(that,
1751 minDate, maxDate, that.yAxisRanges());
1752 }
1753 });
1754 }
1755 };
1756
1757 /**
1758 * Combined animation logic for all zoom functions.
1759 * either the x parameters or y parameters may be null.
1760 * @private
1761 */
1762 Dygraph.prototype.doAnimatedZoom = function(oldXRange, newXRange, oldYRanges, newYRanges, callback) {
1763 var steps = this.getBooleanOption("animatedZooms") ?
1764 Dygraph.ANIMATION_STEPS : 1;
1765
1766 var windows = [];
1767 var valueRanges = [];
1768 var step, frac;
1769
1770 if (oldXRange !== null && newXRange !== null) {
1771 for (step = 1; step <= steps; step++) {
1772 frac = Dygraph.zoomAnimationFunction(step, steps);
1773 windows[step-1] = [oldXRange[0]*(1-frac) + frac*newXRange[0],
1774 oldXRange[1]*(1-frac) + frac*newXRange[1]];
1775 }
1776 }
1777
1778 if (oldYRanges !== null && newYRanges !== null) {
1779 for (step = 1; step <= steps; step++) {
1780 frac = Dygraph.zoomAnimationFunction(step, steps);
1781 var thisRange = [];
1782 for (var j = 0; j < this.axes_.length; j++) {
1783 thisRange.push([oldYRanges[j][0]*(1-frac) + frac*newYRanges[j][0],
1784 oldYRanges[j][1]*(1-frac) + frac*newYRanges[j][1]]);
1785 }
1786 valueRanges[step-1] = thisRange;
1787 }
1788 }
1789
1790 var that = this;
1791 Dygraph.repeatAndCleanup(function(step) {
1792 if (valueRanges.length) {
1793 for (var i = 0; i < that.axes_.length; i++) {
1794 var w = valueRanges[step][i];
1795 that.axes_[i].valueWindow = [w[0], w[1]];
1796 }
1797 }
1798 if (windows.length) {
1799 that.dateWindow_ = windows[step];
1800 }
1801 that.drawGraph_();
1802 }, steps, Dygraph.ANIMATION_DURATION / steps, callback);
1803 };
1804
1805 /**
1806 * Get the current graph's area object.
1807 *
1808 * Returns: {x, y, w, h}
1809 */
1810 Dygraph.prototype.getArea = function() {
1811 return this.plotter_.area;
1812 };
1813
1814 /**
1815 * Convert a mouse event to DOM coordinates relative to the graph origin.
1816 *
1817 * Returns a two-element array: [X, Y].
1818 */
1819 Dygraph.prototype.eventToDomCoords = function(event) {
1820 if (event.offsetX && event.offsetY) {
1821 return [ event.offsetX, event.offsetY ];
1822 } else {
1823 var eventElementPos = Dygraph.findPos(this.mouseEventElement_);
1824 var canvasx = Dygraph.pageX(event) - eventElementPos.x;
1825 var canvasy = Dygraph.pageY(event) - eventElementPos.y;
1826 return [canvasx, canvasy];
1827 }
1828 };
1829
1830 /**
1831 * Given a canvas X coordinate, find the closest row.
1832 * @param {number} domX graph-relative DOM X coordinate
1833 * Returns {number} row number.
1834 * @private
1835 */
1836 Dygraph.prototype.findClosestRow = function(domX) {
1837 var minDistX = Infinity;
1838 var closestRow = -1;
1839 var sets = this.layout_.points;
1840 for (var i = 0; i < sets.length; i++) {
1841 var points = sets[i];
1842 var len = points.length;
1843 for (var j = 0; j < len; j++) {
1844 var point = points[j];
1845 if (!Dygraph.isValidPoint(point, true)) continue;
1846 var dist = Math.abs(point.canvasx - domX);
1847 if (dist < minDistX) {
1848 minDistX = dist;
1849 closestRow = point.idx;
1850 }
1851 }
1852 }
1853
1854 return closestRow;
1855 };
1856
1857 /**
1858 * Given canvas X,Y coordinates, find the closest point.
1859 *
1860 * This finds the individual data point across all visible series
1861 * that's closest to the supplied DOM coordinates using the standard
1862 * Euclidean X,Y distance.
1863 *
1864 * @param {number} domX graph-relative DOM X coordinate
1865 * @param {number} domY graph-relative DOM Y coordinate
1866 * Returns: {row, seriesName, point}
1867 * @private
1868 */
1869 Dygraph.prototype.findClosestPoint = function(domX, domY) {
1870 var minDist = Infinity;
1871 var dist, dx, dy, point, closestPoint, closestSeries, closestRow;
1872 for ( var setIdx = this.layout_.points.length - 1 ; setIdx >= 0 ; --setIdx ) {
1873 var points = this.layout_.points[setIdx];
1874 for (var i = 0; i < points.length; ++i) {
1875 point = points[i];
1876 if (!Dygraph.isValidPoint(point)) continue;
1877 dx = point.canvasx - domX;
1878 dy = point.canvasy - domY;
1879 dist = dx * dx + dy * dy;
1880 if (dist < minDist) {
1881 minDist = dist;
1882 closestPoint = point;
1883 closestSeries = setIdx;
1884 closestRow = point.idx;
1885 }
1886 }
1887 }
1888 var name = this.layout_.setNames[closestSeries];
1889 return {
1890 row: closestRow,
1891 seriesName: name,
1892 point: closestPoint
1893 };
1894 };
1895
1896 /**
1897 * Given canvas X,Y coordinates, find the touched area in a stacked graph.
1898 *
1899 * This first finds the X data point closest to the supplied DOM X coordinate,
1900 * then finds the series which puts the Y coordinate on top of its filled area,
1901 * using linear interpolation between adjacent point pairs.
1902 *
1903 * @param {number} domX graph-relative DOM X coordinate
1904 * @param {number} domY graph-relative DOM Y coordinate
1905 * Returns: {row, seriesName, point}
1906 * @private
1907 */
1908 Dygraph.prototype.findStackedPoint = function(domX, domY) {
1909 var row = this.findClosestRow(domX);
1910 var closestPoint, closestSeries;
1911 for (var setIdx = 0; setIdx < this.layout_.points.length; ++setIdx) {
1912 var boundary = this.getLeftBoundary_(setIdx);
1913 var rowIdx = row - boundary;
1914 var points = this.layout_.points[setIdx];
1915 if (rowIdx >= points.length) continue;
1916 var p1 = points[rowIdx];
1917 if (!Dygraph.isValidPoint(p1)) continue;
1918 var py = p1.canvasy;
1919 if (domX > p1.canvasx && rowIdx + 1 < points.length) {
1920 // interpolate series Y value using next point
1921 var p2 = points[rowIdx + 1];
1922 if (Dygraph.isValidPoint(p2)) {
1923 var dx = p2.canvasx - p1.canvasx;
1924 if (dx > 0) {
1925 var r = (domX - p1.canvasx) / dx;
1926 py += r * (p2.canvasy - p1.canvasy);
1927 }
1928 }
1929 } else if (domX < p1.canvasx && rowIdx > 0) {
1930 // interpolate series Y value using previous point
1931 var p0 = points[rowIdx - 1];
1932 if (Dygraph.isValidPoint(p0)) {
1933 var dx = p1.canvasx - p0.canvasx;
1934 if (dx > 0) {
1935 var r = (p1.canvasx - domX) / dx;
1936 py += r * (p0.canvasy - p1.canvasy);
1937 }
1938 }
1939 }
1940 // Stop if the point (domX, py) is above this series' upper edge
1941 if (setIdx === 0 || py < domY) {
1942 closestPoint = p1;
1943 closestSeries = setIdx;
1944 }
1945 }
1946 var name = this.layout_.setNames[closestSeries];
1947 return {
1948 row: row,
1949 seriesName: name,
1950 point: closestPoint
1951 };
1952 };
1953
1954 /**
1955 * When the mouse moves in the canvas, display information about a nearby data
1956 * point and draw dots over those points in the data series. This function
1957 * takes care of cleanup of previously-drawn dots.
1958 * @param {Object} event The mousemove event from the browser.
1959 * @private
1960 */
1961 Dygraph.prototype.mouseMove_ = function(event) {
1962 // This prevents JS errors when mousing over the canvas before data loads.
1963 var points = this.layout_.points;
1964 if (points === undefined || points === null) return;
1965
1966 var canvasCoords = this.eventToDomCoords(event);
1967 var canvasx = canvasCoords[0];
1968 var canvasy = canvasCoords[1];
1969
1970 var highlightSeriesOpts = this.getOption("highlightSeriesOpts");
1971 var selectionChanged = false;
1972 if (highlightSeriesOpts && !this.isSeriesLocked()) {
1973 var closest;
1974 if (this.getBooleanOption("stackedGraph")) {
1975 closest = this.findStackedPoint(canvasx, canvasy);
1976 } else {
1977 closest = this.findClosestPoint(canvasx, canvasy);
1978 }
1979 selectionChanged = this.setSelection(closest.row, closest.seriesName);
1980 } else {
1981 var idx = this.findClosestRow(canvasx);
1982 selectionChanged = this.setSelection(idx);
1983 }
1984
1985 var callback = this.getFunctionOption("highlightCallback");
1986 if (callback && selectionChanged) {
1987 callback.call(this, event,
1988 this.lastx_,
1989 this.selPoints_,
1990 this.lastRow_,
1991 this.highlightSet_);
1992 }
1993 };
1994
1995 /**
1996 * Fetch left offset from the specified set index or if not passed, the
1997 * first defined boundaryIds record (see bug #236).
1998 * @private
1999 */
2000 Dygraph.prototype.getLeftBoundary_ = function(setIdx) {
2001 if (this.boundaryIds_[setIdx]) {
2002 return this.boundaryIds_[setIdx][0];
2003 } else {
2004 for (var i = 0; i < this.boundaryIds_.length; i++) {
2005 if (this.boundaryIds_[i] !== undefined) {
2006 return this.boundaryIds_[i][0];
2007 }
2008 }
2009 return 0;
2010 }
2011 };
2012
2013 Dygraph.prototype.animateSelection_ = function(direction) {
2014 var totalSteps = 10;
2015 var millis = 30;
2016 if (this.fadeLevel === undefined) this.fadeLevel = 0;
2017 if (this.animateId === undefined) this.animateId = 0;
2018 var start = this.fadeLevel;
2019 var steps = direction < 0 ? start : totalSteps - start;
2020 if (steps <= 0) {
2021 if (this.fadeLevel) {
2022 this.updateSelection_(1.0);
2023 }
2024 return;
2025 }
2026
2027 var thisId = ++this.animateId;
2028 var that = this;
2029 Dygraph.repeatAndCleanup(
2030 function(n) {
2031 // ignore simultaneous animations
2032 if (that.animateId != thisId) return;
2033
2034 that.fadeLevel += direction;
2035 if (that.fadeLevel === 0) {
2036 that.clearSelection();
2037 } else {
2038 that.updateSelection_(that.fadeLevel / totalSteps);
2039 }
2040 },
2041 steps, millis, function() {});
2042 };
2043
2044 /**
2045 * Draw dots over the selectied points in the data series. This function
2046 * takes care of cleanup of previously-drawn dots.
2047 * @private
2048 */
2049 Dygraph.prototype.updateSelection_ = function(opt_animFraction) {
2050 /*var defaultPrevented = */
2051 this.cascadeEvents_('select', {
2052 selectedRow: this.lastRow_,
2053 selectedX: this.lastx_,
2054 selectedPoints: this.selPoints_
2055 });
2056 // TODO(danvk): use defaultPrevented here?
2057
2058 // Clear the previously drawn vertical, if there is one
2059 var i;
2060 var ctx = this.canvas_ctx_;
2061 if (this.getOption('highlightSeriesOpts')) {
2062 ctx.clearRect(0, 0, this.width_, this.height_);
2063 var alpha = 1.0 - this.getNumericOption('highlightSeriesBackgroundAlpha');
2064 if (alpha) {
2065 // Activating background fade includes an animation effect for a gradual
2066 // fade. TODO(klausw): make this independently configurable if it causes
2067 // issues? Use a shared preference to control animations?
2068 var animateBackgroundFade = true;
2069 if (animateBackgroundFade) {
2070 if (opt_animFraction === undefined) {
2071 // start a new animation
2072 this.animateSelection_(1);
2073 return;
2074 }
2075 alpha *= opt_animFraction;
2076 }
2077 ctx.fillStyle = 'rgba(255,255,255,' + alpha + ')';
2078 ctx.fillRect(0, 0, this.width_, this.height_);
2079 }
2080
2081 // Redraw only the highlighted series in the interactive canvas (not the
2082 // static plot canvas, which is where series are usually drawn).
2083 this.plotter_._renderLineChart(this.highlightSet_, ctx);
2084 } else if (this.previousVerticalX_ >= 0) {
2085 // Determine the maximum highlight circle size.
2086 var maxCircleSize = 0;
2087 var labels = this.attr_('labels');
2088 for (i = 1; i < labels.length; i++) {
2089 var r = this.getNumericOption('highlightCircleSize', labels[i]);
2090 if (r > maxCircleSize) maxCircleSize = r;
2091 }
2092 var px = this.previousVerticalX_;
2093 ctx.clearRect(px - maxCircleSize - 1, 0,
2094 2 * maxCircleSize + 2, this.height_);
2095 }
2096
2097 if (this.selPoints_.length > 0) {
2098 // Draw colored circles over the center of each selected point
2099 var canvasx = this.selPoints_[0].canvasx;
2100 ctx.save();
2101 for (i = 0; i < this.selPoints_.length; i++) {
2102 var pt = this.selPoints_[i];
2103 if (!Dygraph.isOK(pt.canvasy)) continue;
2104
2105 var circleSize = this.getNumericOption('highlightCircleSize', pt.name);
2106 var callback = this.getFunctionOption("drawHighlightPointCallback", pt.name);
2107 var color = this.plotter_.colors[pt.name];
2108 if (!callback) {
2109 callback = Dygraph.Circles.DEFAULT;
2110 }
2111 ctx.lineWidth = this.getNumericOption('strokeWidth', pt.name);
2112 ctx.strokeStyle = color;
2113 ctx.fillStyle = color;
2114 callback.call(this, this, pt.name, ctx, canvasx, pt.canvasy,
2115 color, circleSize, pt.idx);
2116 }
2117 ctx.restore();
2118
2119 this.previousVerticalX_ = canvasx;
2120 }
2121 };
2122
2123 /**
2124 * Manually set the selected points and display information about them in the
2125 * legend. The selection can be cleared using clearSelection() and queried
2126 * using getSelection().
2127 * @param {number} row Row number that should be highlighted (i.e. appear with
2128 * hover dots on the chart).
2129 * @param {seriesName} optional series name to highlight that series with the
2130 * the highlightSeriesOpts setting.
2131 * @param { locked } optional If true, keep seriesName selected when mousing
2132 * over the graph, disabling closest-series highlighting. Call clearSelection()
2133 * to unlock it.
2134 */
2135 Dygraph.prototype.setSelection = function(row, opt_seriesName, opt_locked) {
2136 // Extract the points we've selected
2137 this.selPoints_ = [];
2138
2139 var changed = false;
2140 if (row !== false && row >= 0) {
2141 if (row != this.lastRow_) changed = true;
2142 this.lastRow_ = row;
2143 for (var setIdx = 0; setIdx < this.layout_.points.length; ++setIdx) {
2144 var points = this.layout_.points[setIdx];
2145 // Check if the point at the appropriate index is the point we're looking
2146 // for. If it is, just use it, otherwise search the array for a point
2147 // in the proper place.
2148 var setRow = row - this.getLeftBoundary_(setIdx);
2149 if (setRow < points.length && points[setRow].idx == row) {
2150 var point = points[setRow];
2151 if (point.yval !== null) this.selPoints_.push(point);
2152 } else {
2153 for (var pointIdx = 0; pointIdx < points.length; ++pointIdx) {
2154 var point = points[pointIdx];
2155 if (point.idx == row) {
2156 if (point.yval !== null) {
2157 this.selPoints_.push(point);
2158 }
2159 break;
2160 }
2161 }
2162 }
2163 }
2164 } else {
2165 if (this.lastRow_ >= 0) changed = true;
2166 this.lastRow_ = -1;
2167 }
2168
2169 if (this.selPoints_.length) {
2170 this.lastx_ = this.selPoints_[0].xval;
2171 } else {
2172 this.lastx_ = -1;
2173 }
2174
2175 if (opt_seriesName !== undefined) {
2176 if (this.highlightSet_ !== opt_seriesName) changed = true;
2177 this.highlightSet_ = opt_seriesName;
2178 }
2179
2180 if (opt_locked !== undefined) {
2181 this.lockedSet_ = opt_locked;
2182 }
2183
2184 if (changed) {
2185 this.updateSelection_(undefined);
2186 }
2187 return changed;
2188 };
2189
2190 /**
2191 * The mouse has left the canvas. Clear out whatever artifacts remain
2192 * @param {Object} event the mouseout event from the browser.
2193 * @private
2194 */
2195 Dygraph.prototype.mouseOut_ = function(event) {
2196 if (this.getFunctionOption("unhighlightCallback")) {
2197 this.getFunctionOption("unhighlightCallback").call(this, event);
2198 }
2199
2200 if (this.getBooleanOption("hideOverlayOnMouseOut") && !this.lockedSet_) {
2201 this.clearSelection();
2202 }
2203 };
2204
2205 /**
2206 * Clears the current selection (i.e. points that were highlighted by moving
2207 * the mouse over the chart).
2208 */
2209 Dygraph.prototype.clearSelection = function() {
2210 this.cascadeEvents_('deselect', {});
2211
2212 this.lockedSet_ = false;
2213 // Get rid of the overlay data
2214 if (this.fadeLevel) {
2215 this.animateSelection_(-1);
2216 return;
2217 }
2218 this.canvas_ctx_.clearRect(0, 0, this.width_, this.height_);
2219 this.fadeLevel = 0;
2220 this.selPoints_ = [];
2221 this.lastx_ = -1;
2222 this.lastRow_ = -1;
2223 this.highlightSet_ = null;
2224 };
2225
2226 /**
2227 * Returns the number of the currently selected row. To get data for this row,
2228 * you can use the getValue method.
2229 * @return {number} row number, or -1 if nothing is selected
2230 */
2231 Dygraph.prototype.getSelection = function() {
2232 if (!this.selPoints_ || this.selPoints_.length < 1) {
2233 return -1;
2234 }
2235
2236 for (var setIdx = 0; setIdx < this.layout_.points.length; setIdx++) {
2237 var points = this.layout_.points[setIdx];
2238 for (var row = 0; row < points.length; row++) {
2239 if (points[row].x == this.selPoints_[0].x) {
2240 return points[row].idx;
2241 }
2242 }
2243 }
2244 return -1;
2245 };
2246
2247 /**
2248 * Returns the name of the currently-highlighted series.
2249 * Only available when the highlightSeriesOpts option is in use.
2250 */
2251 Dygraph.prototype.getHighlightSeries = function() {
2252 return this.highlightSet_;
2253 };
2254
2255 /**
2256 * Returns true if the currently-highlighted series was locked
2257 * via setSelection(..., seriesName, true).
2258 */
2259 Dygraph.prototype.isSeriesLocked = function() {
2260 return this.lockedSet_;
2261 };
2262
2263 /**
2264 * Fires when there's data available to be graphed.
2265 * @param {string} data Raw CSV data to be plotted
2266 * @private
2267 */
2268 Dygraph.prototype.loadedEvent_ = function(data) {
2269 this.rawData_ = this.parseCSV_(data);
2270 this.cascadeDataDidUpdateEvent_();
2271 this.predraw_();
2272 };
2273
2274 /**
2275 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
2276 * @private
2277 */
2278 Dygraph.prototype.addXTicks_ = function() {
2279 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
2280 var range;
2281 if (this.dateWindow_) {
2282 range = [this.dateWindow_[0], this.dateWindow_[1]];
2283 } else {
2284 range = this.xAxisExtremes();
2285 }
2286
2287 var xAxisOptionsView = this.optionsViewForAxis_('x');
2288 var xTicks = xAxisOptionsView('ticker')(
2289 range[0],
2290 range[1],
2291 this.plotter_.area.w, // TODO(danvk): should be area.width
2292 xAxisOptionsView,
2293 this);
2294 // var msg = 'ticker(' + range[0] + ', ' + range[1] + ', ' + this.width_ + ', ' + this.attr_('pixelsPerXLabel') + ') -> ' + JSON.stringify(xTicks);
2295 // console.log(msg);
2296 this.layout_.setXTicks(xTicks);
2297 };
2298
2299 /**
2300 * Returns the correct handler class for the currently set options.
2301 * @private
2302 */
2303 Dygraph.prototype.getHandlerClass_ = function() {
2304 var handlerClass;
2305 if (this.attr_('dataHandler')) {
2306 handlerClass = this.attr_('dataHandler');
2307 } else if (this.fractions_) {
2308 if (this.getBooleanOption('errorBars')) {
2309 handlerClass = Dygraph.DataHandlers.FractionsBarsHandler;
2310 } else {
2311 handlerClass = Dygraph.DataHandlers.DefaultFractionHandler;
2312 }
2313 } else if (this.getBooleanOption('customBars')) {
2314 handlerClass = Dygraph.DataHandlers.CustomBarsHandler;
2315 } else if (this.getBooleanOption('errorBars')) {
2316 handlerClass = Dygraph.DataHandlers.ErrorBarsHandler;
2317 } else {
2318 handlerClass = Dygraph.DataHandlers.DefaultHandler;
2319 }
2320 return handlerClass;
2321 };
2322
2323 /**
2324 * @private
2325 * This function is called once when the chart's data is changed or the options
2326 * dictionary is updated. It is _not_ called when the user pans or zooms. The
2327 * idea is that values derived from the chart's data can be computed here,
2328 * rather than every time the chart is drawn. This includes things like the
2329 * number of axes, rolling averages, etc.
2330 */
2331 Dygraph.prototype.predraw_ = function() {
2332 var start = new Date();
2333
2334 // Create the correct dataHandler
2335 this.dataHandler_ = new (this.getHandlerClass_())();
2336
2337 this.layout_.computePlotArea();
2338
2339 // TODO(danvk): move more computations out of drawGraph_ and into here.
2340 this.computeYAxes_();
2341
2342 if (!this.is_initial_draw_) {
2343 this.canvas_ctx_.restore();
2344 this.hidden_ctx_.restore();
2345 }
2346
2347 this.canvas_ctx_.save();
2348 this.hidden_ctx_.save();
2349
2350 // Create a new plotter.
2351 this.plotter_ = new DygraphCanvasRenderer(this,
2352 this.hidden_,
2353 this.hidden_ctx_,
2354 this.layout_);
2355
2356 // The roller sits in the bottom left corner of the chart. We don't know where
2357 // this will be until the options are available, so it's positioned here.
2358 this.createRollInterface_();
2359
2360 this.cascadeEvents_('predraw');
2361
2362 // Convert the raw data (a 2D array) into the internal format and compute
2363 // rolling averages.
2364 this.rolledSeries_ = [null]; // x-axis is the first series and it's special
2365 for (var i = 1; i < this.numColumns(); i++) {
2366 // var logScale = this.attr_('logscale', i); // TODO(klausw): this looks wrong // konigsberg thinks so too.
2367 var series = this.dataHandler_.extractSeries(this.rawData_, i, this.attributes_);
2368 if (this.rollPeriod_ > 1) {
2369 series = this.dataHandler_.rollingAverage(series, this.rollPeriod_, this.attributes_);
2370 }
2371
2372 this.rolledSeries_.push(series);
2373 }
2374
2375 // If the data or options have changed, then we'd better redraw.
2376 this.drawGraph_();
2377
2378 // This is used to determine whether to do various animations.
2379 var end = new Date();
2380 this.drawingTimeMs_ = (end - start);
2381 };
2382
2383 /**
2384 * Point structure.
2385 *
2386 * xval_* and yval_* are the original unscaled data values,
2387 * while x_* and y_* are scaled to the range (0.0-1.0) for plotting.
2388 * yval_stacked is the cumulative Y value used for stacking graphs,
2389 * and bottom/top/minus/plus are used for error bar graphs.
2390 *
2391 * @typedef {{
2392 * idx: number,
2393 * name: string,
2394 * x: ?number,
2395 * xval: ?number,
2396 * y_bottom: ?number,
2397 * y: ?number,
2398 * y_stacked: ?number,
2399 * y_top: ?number,
2400 * yval_minus: ?number,
2401 * yval: ?number,
2402 * yval_plus: ?number,
2403 * yval_stacked
2404 * }}
2405 */
2406 Dygraph.PointType = undefined;
2407
2408 /**
2409 * Calculates point stacking for stackedGraph=true.
2410 *
2411 * For stacking purposes, interpolate or extend neighboring data across
2412 * NaN values based on stackedGraphNaNFill settings. This is for display
2413 * only, the underlying data value as shown in the legend remains NaN.
2414 *
2415 * @param {Array.<Dygraph.PointType>} points Point array for a single series.
2416 * Updates each Point's yval_stacked property.
2417 * @param {Array.<number>} cumulativeYval Accumulated top-of-graph stacked Y
2418 * values for the series seen so far. Index is the row number. Updated
2419 * based on the current series's values.
2420 * @param {Array.<number>} seriesExtremes Min and max values, updated
2421 * to reflect the stacked values.
2422 * @param {string} fillMethod Interpolation method, one of 'all', 'inside', or
2423 * 'none'.
2424 * @private
2425 */
2426 Dygraph.stackPoints_ = function(
2427 points, cumulativeYval, seriesExtremes, fillMethod) {
2428 var lastXval = null;
2429 var prevPoint = null;
2430 var nextPoint = null;
2431 var nextPointIdx = -1;
2432
2433 // Find the next stackable point starting from the given index.
2434 var updateNextPoint = function(idx) {
2435 // If we've previously found a non-NaN point and haven't gone past it yet,
2436 // just use that.
2437 if (nextPointIdx >= idx) return;
2438
2439 // We haven't found a non-NaN point yet or have moved past it,
2440 // look towards the right to find a non-NaN point.
2441 for (var j = idx; j < points.length; ++j) {
2442 // Clear out a previously-found point (if any) since it's no longer
2443 // valid, we shouldn't use it for interpolation anymore.
2444 nextPoint = null;
2445 if (!isNaN(points[j].yval) && points[j].yval !== null) {
2446 nextPointIdx = j;
2447 nextPoint = points[j];
2448 break;
2449 }
2450 }
2451 };
2452
2453 for (var i = 0; i < points.length; ++i) {
2454 var point = points[i];
2455 var xval = point.xval;
2456 if (cumulativeYval[xval] === undefined) {
2457 cumulativeYval[xval] = 0;
2458 }
2459
2460 var actualYval = point.yval;
2461 if (isNaN(actualYval) || actualYval === null) {
2462 if(fillMethod == 'none') {
2463 actualYval = 0;
2464 } else {
2465 // Interpolate/extend for stacking purposes if possible.
2466 updateNextPoint(i);
2467 if (prevPoint && nextPoint && fillMethod != 'none') {
2468 // Use linear interpolation between prevPoint and nextPoint.
2469 actualYval = prevPoint.yval + (nextPoint.yval - prevPoint.yval) *
2470 ((xval - prevPoint.xval) / (nextPoint.xval - prevPoint.xval));
2471 } else if (prevPoint && fillMethod == 'all') {
2472 actualYval = prevPoint.yval;
2473 } else if (nextPoint && fillMethod == 'all') {
2474 actualYval = nextPoint.yval;
2475 } else {
2476 actualYval = 0;
2477 }
2478 }
2479 } else {
2480 prevPoint = point;
2481 }
2482
2483 var stackedYval = cumulativeYval[xval];
2484 if (lastXval != xval) {
2485 // If an x-value is repeated, we ignore the duplicates.
2486 stackedYval += actualYval;
2487 cumulativeYval[xval] = stackedYval;
2488 }
2489 lastXval = xval;
2490
2491 point.yval_stacked = stackedYval;
2492
2493 if (stackedYval > seriesExtremes[1]) {
2494 seriesExtremes[1] = stackedYval;
2495 }
2496 if (stackedYval < seriesExtremes[0]) {
2497 seriesExtremes[0] = stackedYval;
2498 }
2499 }
2500 };
2501
2502
2503 /**
2504 * Loop over all fields and create datasets, calculating extreme y-values for
2505 * each series and extreme x-indices as we go.
2506 *
2507 * dateWindow is passed in as an explicit parameter so that we can compute
2508 * extreme values "speculatively", i.e. without actually setting state on the
2509 * dygraph.
2510 *
2511 * @param {Array.<Array.<Array.<(number|Array<number>)>>} rolledSeries, where
2512 * rolledSeries[seriesIndex][row] = raw point, where
2513 * seriesIndex is the column number starting with 1, and
2514 * rawPoint is [x,y] or [x, [y, err]] or [x, [y, yminus, yplus]].
2515 * @param {?Array.<number>} dateWindow [xmin, xmax] pair, or null.
2516 * @return {{
2517 * points: Array.<Array.<Dygraph.PointType>>,
2518 * seriesExtremes: Array.<Array.<number>>,
2519 * boundaryIds: Array.<number>}}
2520 * @private
2521 */
2522 Dygraph.prototype.gatherDatasets_ = function(rolledSeries, dateWindow) {
2523 var boundaryIds = [];
2524 var points = [];
2525 var cumulativeYval = []; // For stacked series.
2526 var extremes = {}; // series name -> [low, high]
2527 var seriesIdx, sampleIdx;
2528 var firstIdx, lastIdx;
2529 var axisIdx;
2530
2531 // Loop over the fields (series). Go from the last to the first,
2532 // because if they're stacked that's how we accumulate the values.
2533 var num_series = rolledSeries.length - 1;
2534 var series;
2535 for (seriesIdx = num_series; seriesIdx >= 1; seriesIdx--) {
2536 if (!this.visibility()[seriesIdx - 1]) continue;
2537
2538 // Prune down to the desired range, if necessary (for zooming)
2539 // Because there can be lines going to points outside of the visible area,
2540 // we actually prune to visible points, plus one on either side.
2541 if (dateWindow) {
2542 series = rolledSeries[seriesIdx];
2543 var low = dateWindow[0];
2544 var high = dateWindow[1];
2545
2546 // TODO(danvk): do binary search instead of linear search.
2547 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
2548 firstIdx = null;
2549 lastIdx = null;
2550 for (sampleIdx = 0; sampleIdx < series.length; sampleIdx++) {
2551 if (series[sampleIdx][0] >= low && firstIdx === null) {
2552 firstIdx = sampleIdx;
2553 }
2554 if (series[sampleIdx][0] <= high) {
2555 lastIdx = sampleIdx;
2556 }
2557 }
2558
2559 if (firstIdx === null) firstIdx = 0;
2560 var correctedFirstIdx = firstIdx;
2561 var isInvalidValue = true;
2562 while (isInvalidValue && correctedFirstIdx > 0) {
2563 correctedFirstIdx--;
2564 // check if the y value is null.
2565 isInvalidValue = series[correctedFirstIdx][1] === null;
2566 }
2567
2568 if (lastIdx === null) lastIdx = series.length - 1;
2569 var correctedLastIdx = lastIdx;
2570 isInvalidValue = true;
2571 while (isInvalidValue && correctedLastIdx < series.length - 1) {
2572 correctedLastIdx++;
2573 isInvalidValue = series[correctedLastIdx][1] === null;
2574 }
2575
2576 if (correctedFirstIdx!==firstIdx) {
2577 firstIdx = correctedFirstIdx;
2578 }
2579 if (correctedLastIdx !== lastIdx) {
2580 lastIdx = correctedLastIdx;
2581 }
2582
2583 boundaryIds[seriesIdx-1] = [firstIdx, lastIdx];
2584
2585 // .slice's end is exclusive, we want to include lastIdx.
2586 series = series.slice(firstIdx, lastIdx + 1);
2587 } else {
2588 series = rolledSeries[seriesIdx];
2589 boundaryIds[seriesIdx-1] = [0, series.length-1];
2590 }
2591
2592 var seriesName = this.attr_("labels")[seriesIdx];
2593 var seriesExtremes = this.dataHandler_.getExtremeYValues(series,
2594 dateWindow, this.getBooleanOption("stepPlot",seriesName));
2595
2596 var seriesPoints = this.dataHandler_.seriesToPoints(series,
2597 seriesName, boundaryIds[seriesIdx-1][0]);
2598
2599 if (this.getBooleanOption("stackedGraph")) {
2600 axisIdx = this.attributes_.axisForSeries(seriesName);
2601 if (cumulativeYval[axisIdx] === undefined) {
2602 cumulativeYval[axisIdx] = [];
2603 }
2604 Dygraph.stackPoints_(seriesPoints, cumulativeYval[axisIdx], seriesExtremes,
2605 this.getBooleanOption("stackedGraphNaNFill"));
2606 }
2607
2608 extremes[seriesName] = seriesExtremes;
2609 points[seriesIdx] = seriesPoints;
2610 }
2611
2612 return { points: points, extremes: extremes, boundaryIds: boundaryIds };
2613 };
2614
2615 /**
2616 * Update the graph with new data. This method is called when the viewing area
2617 * has changed. If the underlying data or options have changed, predraw_ will
2618 * be called before drawGraph_ is called.
2619 *
2620 * @private
2621 */
2622 Dygraph.prototype.drawGraph_ = function() {
2623 var start = new Date();
2624
2625 // This is used to set the second parameter to drawCallback, below.
2626 var is_initial_draw = this.is_initial_draw_;
2627 this.is_initial_draw_ = false;
2628
2629 this.layout_.removeAllDatasets();
2630 this.setColors_();
2631 this.attrs_.pointSize = 0.5 * this.getNumericOption('highlightCircleSize');
2632
2633 var packed = this.gatherDatasets_(this.rolledSeries_, this.dateWindow_);
2634 var points = packed.points;
2635 var extremes = packed.extremes;
2636 this.boundaryIds_ = packed.boundaryIds;
2637
2638 this.setIndexByName_ = {};
2639 var labels = this.attr_("labels");
2640 if (labels.length > 0) {
2641 this.setIndexByName_[labels[0]] = 0;
2642 }
2643 var dataIdx = 0;
2644 for (var i = 1; i < points.length; i++) {
2645 this.setIndexByName_[labels[i]] = i;
2646 if (!this.visibility()[i - 1]) continue;
2647 this.layout_.addDataset(labels[i], points[i]);
2648 this.datasetIndex_[i] = dataIdx++;
2649 }
2650
2651 this.computeYAxisRanges_(extremes);
2652 this.layout_.setYAxes(this.axes_);
2653
2654 this.addXTicks_();
2655
2656 // Save the X axis zoomed status as the updateOptions call will tend to set it erroneously
2657 var tmp_zoomed_x = this.zoomed_x_;
2658 // Tell PlotKit to use this new data and render itself
2659 this.zoomed_x_ = tmp_zoomed_x;
2660 this.layout_.evaluate();
2661 this.renderGraph_(is_initial_draw);
2662
2663 if (this.getStringOption("timingName")) {
2664 var end = new Date();
2665 console.log(this.getStringOption("timingName") + " - drawGraph: " + (end - start) + "ms");
2666 }
2667 };
2668
2669 /**
2670 * This does the work of drawing the chart. It assumes that the layout and axis
2671 * scales have already been set (e.g. by predraw_).
2672 *
2673 * @private
2674 */
2675 Dygraph.prototype.renderGraph_ = function(is_initial_draw) {
2676 this.cascadeEvents_('clearChart');
2677 this.plotter_.clear();
2678
2679 if (this.getFunctionOption('underlayCallback')) {
2680 // NOTE: we pass the dygraph object to this callback twice to avoid breaking
2681 // users who expect a deprecated form of this callback.
2682 this.getFunctionOption('underlayCallback').call(this,
2683 this.hidden_ctx_, this.layout_.getPlotArea(), this, this);
2684 }
2685
2686 var e = {
2687 canvas: this.hidden_,
2688 drawingContext: this.hidden_ctx_
2689 };
2690 this.cascadeEvents_('willDrawChart', e);
2691 this.plotter_.render();
2692 this.cascadeEvents_('didDrawChart', e);
2693 this.lastRow_ = -1; // because plugins/legend.js clears the legend
2694
2695 // TODO(danvk): is this a performance bottleneck when panning?
2696 // The interaction canvas should already be empty in that situation.
2697 this.canvas_.getContext('2d').clearRect(0, 0, this.width_, this.height_);
2698
2699 if (this.getFunctionOption("drawCallback") !== null) {
2700 this.getFunctionOption("drawCallback")(this, is_initial_draw);
2701 }
2702 if (is_initial_draw) {
2703 this.readyFired_ = true;
2704 while (this.readyFns_.length > 0) {
2705 var fn = this.readyFns_.pop();
2706 fn(this);
2707 }
2708 }
2709 };
2710
2711 /**
2712 * @private
2713 * Determine properties of the y-axes which are independent of the data
2714 * currently being displayed. This includes things like the number of axes and
2715 * the style of the axes. It does not include the range of each axis and its
2716 * tick marks.
2717 * This fills in this.axes_.
2718 * axes_ = [ { options } ]
2719 * indices are into the axes_ array.
2720 */
2721 Dygraph.prototype.computeYAxes_ = function() {
2722 // Preserve valueWindow settings if they exist, and if the user hasn't
2723 // specified a new valueRange.
2724 var valueWindows, axis, index, opts, v;
2725 if (this.axes_ !== undefined && this.user_attrs_.hasOwnProperty("valueRange") === false) {
2726 valueWindows = [];
2727 for (index = 0; index < this.axes_.length; index++) {
2728 valueWindows.push(this.axes_[index].valueWindow);
2729 }
2730 }
2731
2732 // this.axes_ doesn't match this.attributes_.axes_.options. It's used for
2733 // data computation as well as options storage.
2734 // Go through once and add all the axes.
2735 this.axes_ = [];
2736
2737 for (axis = 0; axis < this.attributes_.numAxes(); axis++) {
2738 // Add a new axis, making a copy of its per-axis options.
2739 opts = { g : this };
2740 Dygraph.update(opts, this.attributes_.axisOptions(axis));
2741 this.axes_[axis] = opts;
2742 }
2743
2744
2745 // Copy global valueRange option over to the first axis.
2746 // NOTE(konigsberg): Are these two statements necessary?
2747 // I tried removing it. The automated tests pass, and manually
2748 // messing with tests/zoom.html showed no trouble.
2749 v = this.attr_('valueRange');
2750 if (v) this.axes_[0].valueRange = v;
2751
2752 if (valueWindows !== undefined) {
2753 // Restore valueWindow settings.
2754
2755 // When going from two axes back to one, we only restore
2756 // one axis.
2757 var idxCount = Math.min(valueWindows.length, this.axes_.length);
2758
2759 for (index = 0; index < idxCount; index++) {
2760 this.axes_[index].valueWindow = valueWindows[index];
2761 }
2762 }
2763
2764 for (axis = 0; axis < this.axes_.length; axis++) {
2765 if (axis === 0) {
2766 opts = this.optionsViewForAxis_('y' + (axis ? '2' : ''));
2767 v = opts("valueRange");
2768 if (v) this.axes_[axis].valueRange = v;
2769 } else { // To keep old behavior
2770 var axes = this.user_attrs_.axes;
2771 if (axes && axes.y2) {
2772 v = axes.y2.valueRange;
2773 if (v) this.axes_[axis].valueRange = v;
2774 }
2775 }
2776 }
2777 };
2778
2779 /**
2780 * Returns the number of y-axes on the chart.
2781 * @return {number} the number of axes.
2782 */
2783 Dygraph.prototype.numAxes = function() {
2784 return this.attributes_.numAxes();
2785 };
2786
2787 /**
2788 * @private
2789 * Returns axis properties for the given series.
2790 * @param {string} setName The name of the series for which to get axis
2791 * properties, e.g. 'Y1'.
2792 * @return {Object} The axis properties.
2793 */
2794 Dygraph.prototype.axisPropertiesForSeries = function(series) {
2795 // TODO(danvk): handle errors.
2796 return this.axes_[this.attributes_.axisForSeries(series)];
2797 };
2798
2799 /**
2800 * @private
2801 * Determine the value range and tick marks for each axis.
2802 * @param {Object} extremes A mapping from seriesName -> [low, high]
2803 * This fills in the valueRange and ticks fields in each entry of this.axes_.
2804 */
2805 Dygraph.prototype.computeYAxisRanges_ = function(extremes) {
2806 var isNullUndefinedOrNaN = function(num) {
2807 return isNaN(parseFloat(num));
2808 };
2809 var numAxes = this.attributes_.numAxes();
2810 var ypadCompat, span, series, ypad;
2811
2812 var p_axis;
2813
2814 // Compute extreme values, a span and tick marks for each axis.
2815 for (var i = 0; i < numAxes; i++) {
2816 var axis = this.axes_[i];
2817 var logscale = this.attributes_.getForAxis("logscale", i);
2818 var includeZero = this.attributes_.getForAxis("includeZero", i);
2819 var independentTicks = this.attributes_.getForAxis("independentTicks", i);
2820 series = this.attributes_.seriesForAxis(i);
2821
2822 // Add some padding. This supports two Y padding operation modes:
2823 //
2824 // - backwards compatible (yRangePad not set):
2825 // 10% padding for automatic Y ranges, but not for user-supplied
2826 // ranges, and move a close-to-zero edge to zero except if
2827 // avoidMinZero is set, since drawing at the edge results in
2828 // invisible lines. Unfortunately lines drawn at the edge of a
2829 // user-supplied range will still be invisible. If logscale is
2830 // set, add a variable amount of padding at the top but
2831 // none at the bottom.
2832 //
2833 // - new-style (yRangePad set by the user):
2834 // always add the specified Y padding.
2835 //
2836 ypadCompat = true;
2837 ypad = 0.1; // add 10%
2838 if (this.getNumericOption('yRangePad') !== null) {
2839 ypadCompat = false;
2840 // Convert pixel padding to ratio
2841 ypad = this.getNumericOption('yRangePad') / this.plotter_.area.h;
2842 }
2843
2844 if (series.length === 0) {
2845 // If no series are defined or visible then use a reasonable default
2846 axis.extremeRange = [0, 1];
2847 } else {
2848 // Calculate the extremes of extremes.
2849 var minY = Infinity; // extremes[series[0]][0];
2850 var maxY = -Infinity; // extremes[series[0]][1];
2851 var extremeMinY, extremeMaxY;
2852
2853 for (var j = 0; j < series.length; j++) {
2854 // this skips invisible series
2855 if (!extremes.hasOwnProperty(series[j])) continue;
2856
2857 // Only use valid extremes to stop null data series' from corrupting the scale.
2858 extremeMinY = extremes[series[j]][0];
2859 if (extremeMinY !== null) {
2860 minY = Math.min(extremeMinY, minY);
2861 }
2862 extremeMaxY = extremes[series[j]][1];
2863 if (extremeMaxY !== null) {
2864 maxY = Math.max(extremeMaxY, maxY);
2865 }
2866 }
2867
2868 // Include zero if requested by the user.
2869 if (includeZero && !logscale) {
2870 if (minY > 0) minY = 0;
2871 if (maxY < 0) maxY = 0;
2872 }
2873
2874 // Ensure we have a valid scale, otherwise default to [0, 1] for safety.
2875 if (minY == Infinity) minY = 0;
2876 if (maxY == -Infinity) maxY = 1;
2877
2878 span = maxY - minY;
2879 // special case: if we have no sense of scale, center on the sole value.
2880 if (span === 0) {
2881 if (maxY !== 0) {
2882 span = Math.abs(maxY);
2883 } else {
2884 // ... and if the sole value is zero, use range 0-1.
2885 maxY = 1;
2886 span = 1;
2887 }
2888 }
2889
2890 var maxAxisY, minAxisY;
2891 if (logscale) {
2892 if (ypadCompat) {
2893 maxAxisY = maxY + ypad * span;
2894 minAxisY = minY;
2895 } else {
2896 var logpad = Math.exp(Math.log(span) * ypad);
2897 maxAxisY = maxY * logpad;
2898 minAxisY = minY / logpad;
2899 }
2900 } else {
2901 maxAxisY = maxY + ypad * span;
2902 minAxisY = minY - ypad * span;
2903
2904 // Backwards-compatible behavior: Move the span to start or end at zero if it's
2905 // close to zero, but not if avoidMinZero is set.
2906 if (ypadCompat && !this.getBooleanOption("avoidMinZero")) {
2907 if (minAxisY < 0 && minY >= 0) minAxisY = 0;
2908 if (maxAxisY > 0 && maxY <= 0) maxAxisY = 0;
2909 }
2910 }
2911 axis.extremeRange = [minAxisY, maxAxisY];
2912 }
2913 if (axis.valueWindow) {
2914 // This is only set if the user has zoomed on the y-axis. It is never set
2915 // by a user. It takes precedence over axis.valueRange because, if you set
2916 // valueRange, you'd still expect to be able to pan.
2917 axis.computedValueRange = [axis.valueWindow[0], axis.valueWindow[1]];
2918 } else if (axis.valueRange) {
2919 // This is a user-set value range for this axis.
2920 var y0 = isNullUndefinedOrNaN(axis.valueRange[0]) ? axis.extremeRange[0] : axis.valueRange[0];
2921 var y1 = isNullUndefinedOrNaN(axis.valueRange[1]) ? axis.extremeRange[1] : axis.valueRange[1];
2922 if (!ypadCompat) {
2923 if (axis.logscale) {
2924 var logpad = Math.exp(Math.log(span) * ypad);
2925 y0 *= logpad;
2926 y1 /= logpad;
2927 } else {
2928 span = y1 - y0;
2929 y0 -= span * ypad;
2930 y1 += span * ypad;
2931 }
2932 }
2933 axis.computedValueRange = [y0, y1];
2934 } else {
2935 axis.computedValueRange = axis.extremeRange;
2936 }
2937
2938
2939 if (independentTicks) {
2940 axis.independentTicks = independentTicks;
2941 var opts = this.optionsViewForAxis_('y' + (i ? '2' : ''));
2942 var ticker = opts('ticker');
2943 axis.ticks = ticker(axis.computedValueRange[0],
2944 axis.computedValueRange[1],
2945 this.plotter_.area.h,
2946 opts,
2947 this);
2948 // Define the first independent axis as primary axis.
2949 if (!p_axis) p_axis = axis;
2950 }
2951 }
2952 if (p_axis === undefined) {
2953 throw ("Configuration Error: At least one axis has to have the \"independentTicks\" option activated.");
2954 }
2955 // Add ticks. By default, all axes inherit the tick positions of the
2956 // primary axis. However, if an axis is specifically marked as having
2957 // independent ticks, then that is permissible as well.
2958 for (var i = 0; i < numAxes; i++) {
2959 var axis = this.axes_[i];
2960
2961 if (!axis.independentTicks) {
2962 var opts = this.optionsViewForAxis_('y' + (i ? '2' : ''));
2963 var ticker = opts('ticker');
2964 var p_ticks = p_axis.ticks;
2965 var p_scale = p_axis.computedValueRange[1] - p_axis.computedValueRange[0];
2966 var scale = axis.computedValueRange[1] - axis.computedValueRange[0];
2967 var tick_values = [];
2968 for (var k = 0; k < p_ticks.length; k++) {
2969 var y_frac = (p_ticks[k].v - p_axis.computedValueRange[0]) / p_scale;
2970 var y_val = axis.computedValueRange[0] + y_frac * scale;
2971 tick_values.push(y_val);
2972 }
2973
2974 axis.ticks = ticker(axis.computedValueRange[0],
2975 axis.computedValueRange[1],
2976 this.plotter_.area.h,
2977 opts,
2978 this,
2979 tick_values);
2980 }
2981 }
2982 };
2983
2984 /**
2985 * Detects the type of the str (date or numeric) and sets the various
2986 * formatting attributes in this.attrs_ based on this type.
2987 * @param {string} str An x value.
2988 * @private
2989 */
2990 Dygraph.prototype.detectTypeFromString_ = function(str) {
2991 var isDate = false;
2992 var dashPos = str.indexOf('-'); // could be 2006-01-01 _or_ 1.0e-2
2993 if ((dashPos > 0 && (str[dashPos-1] != 'e' && str[dashPos-1] != 'E')) ||
2994 str.indexOf('/') >= 0 ||
2995 isNaN(parseFloat(str))) {
2996 isDate = true;
2997 } else if (str.length == 8 && str > '19700101' && str < '20371231') {
2998 // TODO(danvk): remove support for this format.
2999 isDate = true;
3000 }
3001
3002 this.setXAxisOptions_(isDate);
3003 };
3004
3005 Dygraph.prototype.setXAxisOptions_ = function(isDate) {
3006 if (isDate) {
3007 this.attrs_.xValueParser = Dygraph.dateParser;
3008 this.attrs_.axes.x.valueFormatter = Dygraph.dateValueFormatter;
3009 this.attrs_.axes.x.ticker = Dygraph.dateTicker;
3010 this.attrs_.axes.x.axisLabelFormatter = Dygraph.dateAxisLabelFormatter;
3011 } else {
3012 /** @private (shut up, jsdoc!) */
3013 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
3014 // TODO(danvk): use Dygraph.numberValueFormatter here?
3015 /** @private (shut up, jsdoc!) */
3016 this.attrs_.axes.x.valueFormatter = function(x) { return x; };
3017 this.attrs_.axes.x.ticker = Dygraph.numericTicks;
3018 this.attrs_.axes.x.axisLabelFormatter = this.attrs_.axes.x.valueFormatter;
3019 }
3020 };
3021
3022 /**
3023 * @private
3024 * Parses a string in a special csv format. We expect a csv file where each
3025 * line is a date point, and the first field in each line is the date string.
3026 * We also expect that all remaining fields represent series.
3027 * if the errorBars attribute is set, then interpret the fields as:
3028 * date, series1, stddev1, series2, stddev2, ...
3029 * @param {[Object]} data See above.
3030 *
3031 * @return [Object] An array with one entry for each row. These entries
3032 * are an array of cells in that row. The first entry is the parsed x-value for
3033 * the row. The second, third, etc. are the y-values. These can take on one of
3034 * three forms, depending on the CSV and constructor parameters:
3035 * 1. numeric value
3036 * 2. [ value, stddev ]
3037 * 3. [ low value, center value, high value ]
3038 */
3039 Dygraph.prototype.parseCSV_ = function(data) {
3040 var ret = [];
3041 var line_delimiter = Dygraph.detectLineDelimiter(data);
3042 var lines = data.split(line_delimiter || "\n");
3043 var vals, j;
3044
3045 // Use the default delimiter or fall back to a tab if that makes sense.
3046 var delim = this.getStringOption('delimiter');
3047 if (lines[0].indexOf(delim) == -1 && lines[0].indexOf('\t') >= 0) {
3048 delim = '\t';
3049 }
3050
3051 var start = 0;
3052 if (!('labels' in this.user_attrs_)) {
3053 // User hasn't explicitly set labels, so they're (presumably) in the CSV.
3054 start = 1;
3055 this.attrs_.labels = lines[0].split(delim); // NOTE: _not_ user_attrs_.
3056 this.attributes_.reparseSeries();
3057 }
3058 var line_no = 0;
3059
3060 var xParser;
3061 var defaultParserSet = false; // attempt to auto-detect x value type
3062 var expectedCols = this.attr_("labels").length;
3063 var outOfOrder = false;
3064 for (var i = start; i < lines.length; i++) {
3065 var line = lines[i];
3066 line_no = i;
3067 if (line.length === 0) continue; // skip blank lines
3068 if (line[0] == '#') continue; // skip comment lines
3069 var inFields = line.split(delim);
3070 if (inFields.length < 2) continue;
3071
3072 var fields = [];
3073 if (!defaultParserSet) {
3074 this.detectTypeFromString_(inFields[0]);
3075 xParser = this.getFunctionOption("xValueParser");
3076 defaultParserSet = true;
3077 }
3078 fields[0] = xParser(inFields[0], this);
3079
3080 // If fractions are expected, parse the numbers as "A/B"
3081 if (this.fractions_) {
3082 for (j = 1; j < inFields.length; j++) {
3083 // TODO(danvk): figure out an appropriate way to flag parse errors.
3084 vals = inFields[j].split("/");
3085 if (vals.length != 2) {
3086 console.error('Expected fractional "num/den" values in CSV data ' +
3087 "but found a value '" + inFields[j] + "' on line " +
3088 (1 + i) + " ('" + line + "') which is not of this form.");
3089 fields[j] = [0, 0];
3090 } else {
3091 fields[j] = [Dygraph.parseFloat_(vals[0], i, line),
3092 Dygraph.parseFloat_(vals[1], i, line)];
3093 }
3094 }
3095 } else if (this.getBooleanOption("errorBars")) {
3096 // If there are error bars, values are (value, stddev) pairs
3097 if (inFields.length % 2 != 1) {
3098 console.error('Expected alternating (value, stdev.) pairs in CSV data ' +
3099 'but line ' + (1 + i) + ' has an odd number of values (' +
3100 (inFields.length - 1) + "): '" + line + "'");
3101 }
3102 for (j = 1; j < inFields.length; j += 2) {
3103 fields[(j + 1) / 2] = [Dygraph.parseFloat_(inFields[j], i, line),
3104 Dygraph.parseFloat_(inFields[j + 1], i, line)];
3105 }
3106 } else if (this.getBooleanOption("customBars")) {
3107 // Bars are a low;center;high tuple
3108 for (j = 1; j < inFields.length; j++) {
3109 var val = inFields[j];
3110 if (/^ *$/.test(val)) {
3111 fields[j] = [null, null, null];
3112 } else {
3113 vals = val.split(";");
3114 if (vals.length == 3) {
3115 fields[j] = [ Dygraph.parseFloat_(vals[0], i, line),
3116 Dygraph.parseFloat_(vals[1], i, line),
3117 Dygraph.parseFloat_(vals[2], i, line) ];
3118 } else {
3119 console.warn('When using customBars, values must be either blank ' +
3120 'or "low;center;high" tuples (got "' + val +
3121 '" on line ' + (1+i));
3122 }
3123 }
3124 }
3125 } else {
3126 // Values are just numbers
3127 for (j = 1; j < inFields.length; j++) {
3128 fields[j] = Dygraph.parseFloat_(inFields[j], i, line);
3129 }
3130 }
3131 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
3132 outOfOrder = true;
3133 }
3134
3135 if (fields.length != expectedCols) {
3136 console.error("Number of columns in line " + i + " (" + fields.length +
3137 ") does not agree with number of labels (" + expectedCols +
3138 ") " + line);
3139 }
3140
3141 // If the user specified the 'labels' option and none of the cells of the
3142 // first row parsed correctly, then they probably double-specified the
3143 // labels. We go with the values set in the option, discard this row and
3144 // log a warning to the JS console.
3145 if (i === 0 && this.attr_('labels')) {
3146 var all_null = true;
3147 for (j = 0; all_null && j < fields.length; j++) {
3148 if (fields[j]) all_null = false;
3149 }
3150 if (all_null) {
3151 console.warn("The dygraphs 'labels' option is set, but the first row " +
3152 "of CSV data ('" + line + "') appears to also contain " +
3153 "labels. Will drop the CSV labels and use the option " +
3154 "labels.");
3155 continue;
3156 }
3157 }
3158 ret.push(fields);
3159 }
3160
3161 if (outOfOrder) {
3162 console.warn("CSV is out of order; order it correctly to speed loading.");
3163 ret.sort(function(a,b) { return a[0] - b[0]; });
3164 }
3165
3166 return ret;
3167 };
3168
3169 /**
3170 * The user has provided their data as a pre-packaged JS array. If the x values
3171 * are numeric, this is the same as dygraphs' internal format. If the x values
3172 * are dates, we need to convert them from Date objects to ms since epoch.
3173 * @param {!Array} data
3174 * @return {Object} data with numeric x values.
3175 * @private
3176 */
3177 Dygraph.prototype.parseArray_ = function(data) {
3178 // Peek at the first x value to see if it's numeric.
3179 if (data.length === 0) {
3180 console.error("Can't plot empty data set");
3181 return null;
3182 }
3183 if (data[0].length === 0) {
3184 console.error("Data set cannot contain an empty row");
3185 return null;
3186 }
3187
3188 var i;
3189 if (this.attr_("labels") === null) {
3190 console.warn("Using default labels. Set labels explicitly via 'labels' " +
3191 "in the options parameter");
3192 this.attrs_.labels = [ "X" ];
3193 for (i = 1; i < data[0].length; i++) {
3194 this.attrs_.labels.push("Y" + i); // Not user_attrs_.
3195 }
3196 this.attributes_.reparseSeries();
3197 } else {
3198 var num_labels = this.attr_("labels");
3199 if (num_labels.length != data[0].length) {
3200 console.error("Mismatch between number of labels (" + num_labels + ")" +
3201 " and number of columns in array (" + data[0].length + ")");
3202 return null;
3203 }
3204 }
3205
3206 if (Dygraph.isDateLike(data[0][0])) {
3207 // Some intelligent defaults for a date x-axis.
3208 this.attrs_.axes.x.valueFormatter = Dygraph.dateValueFormatter;
3209 this.attrs_.axes.x.ticker = Dygraph.dateTicker;
3210 this.attrs_.axes.x.axisLabelFormatter = Dygraph.dateAxisLabelFormatter;
3211
3212 // Assume they're all dates.
3213 var parsedData = Dygraph.clone(data);
3214 for (i = 0; i < data.length; i++) {
3215 if (parsedData[i].length === 0) {
3216 console.error("Row " + (1 + i) + " of data is empty");
3217 return null;
3218 }
3219 if (parsedData[i][0] === null ||
3220 typeof(parsedData[i][0].getTime) != 'function' ||
3221 isNaN(parsedData[i][0].getTime())) {
3222 console.error("x value in row " + (1 + i) + " is not a Date");
3223 return null;
3224 }
3225 parsedData[i][0] = parsedData[i][0].getTime();
3226 }
3227 return parsedData;
3228 } else {
3229 // Some intelligent defaults for a numeric x-axis.
3230 /** @private (shut up, jsdoc!) */
3231 this.attrs_.axes.x.valueFormatter = function(x) { return x; };
3232 this.attrs_.axes.x.ticker = Dygraph.numericTicks;
3233 this.attrs_.axes.x.axisLabelFormatter = Dygraph.numberAxisLabelFormatter;
3234 return data;
3235 }
3236 };
3237
3238 /**
3239 * Parses a DataTable object from gviz.
3240 * The data is expected to have a first column that is either a date or a
3241 * number. All subsequent columns must be numbers. If there is a clear mismatch
3242 * between this.xValueParser_ and the type of the first column, it will be
3243 * fixed. Fills out rawData_.
3244 * @param {!google.visualization.DataTable} data See above.
3245 * @private
3246 */
3247 Dygraph.prototype.parseDataTable_ = function(data) {
3248 var shortTextForAnnotationNum = function(num) {
3249 // converts [0-9]+ [A-Z][a-z]*
3250 // example: 0=A, 1=B, 25=Z, 26=Aa, 27=Ab
3251 // and continues like.. Ba Bb .. Za .. Zz..Aaa...Zzz Aaaa Zzzz
3252 var shortText = String.fromCharCode(65 /* A */ + num % 26);
3253 num = Math.floor(num / 26);
3254 while ( num > 0 ) {
3255 shortText = String.fromCharCode(65 /* A */ + (num - 1) % 26 ) + shortText.toLowerCase();
3256 num = Math.floor((num - 1) / 26);
3257 }
3258 return shortText;
3259 };
3260
3261 var cols = data.getNumberOfColumns();
3262 var rows = data.getNumberOfRows();
3263
3264 var indepType = data.getColumnType(0);
3265 if (indepType == 'date' || indepType == 'datetime') {
3266 this.attrs_.xValueParser = Dygraph.dateParser;
3267 this.attrs_.axes.x.valueFormatter = Dygraph.dateValueFormatter;
3268 this.attrs_.axes.x.ticker = Dygraph.dateTicker;
3269 this.attrs_.axes.x.axisLabelFormatter = Dygraph.dateAxisLabelFormatter;
3270 } else if (indepType == 'number') {
3271 this.attrs_.xValueParser = function(x) { return parseFloat(x); };
3272 this.attrs_.axes.x.valueFormatter = function(x) { return x; };
3273 this.attrs_.axes.x.ticker = Dygraph.numericTicks;
3274 this.attrs_.axes.x.axisLabelFormatter = this.attrs_.axes.x.valueFormatter;
3275 } else {
3276 console.error("only 'date', 'datetime' and 'number' types are supported " +
3277 "for column 1 of DataTable input (Got '" + indepType + "')");
3278 return null;
3279 }
3280
3281 // Array of the column indices which contain data (and not annotations).
3282 var colIdx = [];
3283 var annotationCols = {}; // data index -> [annotation cols]
3284 var hasAnnotations = false;
3285 var i, j;
3286 for (i = 1; i < cols; i++) {
3287 var type = data.getColumnType(i);
3288 if (type == 'number') {
3289 colIdx.push(i);
3290 } else if (type == 'string' && this.getBooleanOption('displayAnnotations')) {
3291 // This is OK -- it's an annotation column.
3292 var dataIdx = colIdx[colIdx.length - 1];
3293 if (!annotationCols.hasOwnProperty(dataIdx)) {
3294 annotationCols[dataIdx] = [i];
3295 } else {
3296 annotationCols[dataIdx].push(i);
3297 }
3298 hasAnnotations = true;
3299 } else {
3300 console.error("Only 'number' is supported as a dependent type with Gviz." +
3301 " 'string' is only supported if displayAnnotations is true");
3302 }
3303 }
3304
3305 // Read column labels
3306 // TODO(danvk): add support back for errorBars
3307 var labels = [data.getColumnLabel(0)];
3308 for (i = 0; i < colIdx.length; i++) {
3309 labels.push(data.getColumnLabel(colIdx[i]));
3310 if (this.getBooleanOption("errorBars")) i += 1;
3311 }
3312 this.attrs_.labels = labels;
3313 cols = labels.length;
3314
3315 var ret = [];
3316 var outOfOrder = false;
3317 var annotations = [];
3318 for (i = 0; i < rows; i++) {
3319 var row = [];
3320 if (typeof(data.getValue(i, 0)) === 'undefined' ||
3321 data.getValue(i, 0) === null) {
3322 console.warn("Ignoring row " + i +
3323 " of DataTable because of undefined or null first column.");
3324 continue;
3325 }
3326
3327 if (indepType == 'date' || indepType == 'datetime') {
3328 row.push(data.getValue(i, 0).getTime());
3329 } else {
3330 row.push(data.getValue(i, 0));
3331 }
3332 if (!this.getBooleanOption("errorBars")) {
3333 for (j = 0; j < colIdx.length; j++) {
3334 var col = colIdx[j];
3335 row.push(data.getValue(i, col));
3336 if (hasAnnotations &&
3337 annotationCols.hasOwnProperty(col) &&
3338 data.getValue(i, annotationCols[col][0]) !== null) {
3339 var ann = {};
3340 ann.series = data.getColumnLabel(col);
3341 ann.xval = row[0];
3342 ann.shortText = shortTextForAnnotationNum(annotations.length);
3343 ann.text = '';
3344 for (var k = 0; k < annotationCols[col].length; k++) {
3345 if (k) ann.text += "\n";
3346 ann.text += data.getValue(i, annotationCols[col][k]);
3347 }
3348 annotations.push(ann);
3349 }
3350 }
3351
3352 // Strip out infinities, which give dygraphs problems later on.
3353 for (j = 0; j < row.length; j++) {
3354 if (!isFinite(row[j])) row[j] = null;
3355 }
3356 } else {
3357 for (j = 0; j < cols - 1; j++) {
3358 row.push([ data.getValue(i, 1 + 2 * j), data.getValue(i, 2 + 2 * j) ]);
3359 }
3360 }
3361 if (ret.length > 0 && row[0] < ret[ret.length - 1][0]) {
3362 outOfOrder = true;
3363 }
3364 ret.push(row);
3365 }
3366
3367 if (outOfOrder) {
3368 console.warn("DataTable is out of order; order it correctly to speed loading.");
3369 ret.sort(function(a,b) { return a[0] - b[0]; });
3370 }
3371 this.rawData_ = ret;
3372
3373 if (annotations.length > 0) {
3374 this.setAnnotations(annotations, true);
3375 }
3376 this.attributes_.reparseSeries();
3377 };
3378
3379 /**
3380 * Signals to plugins that the chart data has updated.
3381 * This happens after the data has updated but before the chart has redrawn.
3382 */
3383 Dygraph.prototype.cascadeDataDidUpdateEvent_ = function() {
3384 // TODO(danvk): there are some issues checking xAxisRange() and using
3385 // toDomCoords from handlers of this event. The visible range should be set
3386 // when the chart is drawn, not derived from the data.
3387 this.cascadeEvents_('dataDidUpdate', {});
3388 };
3389
3390 /**
3391 * Get the CSV data. If it's in a function, call that function. If it's in a
3392 * file, do an XMLHttpRequest to get it.
3393 * @private
3394 */
3395 Dygraph.prototype.start_ = function() {
3396 var data = this.file_;
3397
3398 // Functions can return references of all other types.
3399 if (typeof data == 'function') {
3400 data = data();
3401 }
3402
3403 if (Dygraph.isArrayLike(data)) {
3404 this.rawData_ = this.parseArray_(data);
3405 this.cascadeDataDidUpdateEvent_();
3406 this.predraw_();
3407 } else if (typeof data == 'object' &&
3408 typeof data.getColumnRange == 'function') {
3409 // must be a DataTable from gviz.
3410 this.parseDataTable_(data);
3411 this.cascadeDataDidUpdateEvent_();
3412 this.predraw_();
3413 } else if (typeof data == 'string') {
3414 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
3415 var line_delimiter = Dygraph.detectLineDelimiter(data);
3416 if (line_delimiter) {
3417 this.loadedEvent_(data);
3418 } else {
3419 // REMOVE_FOR_IE
3420 var req;
3421 if (window.XMLHttpRequest) {
3422 // Firefox, Opera, IE7, and other browsers will use the native object
3423 req = new XMLHttpRequest();
3424 } else {
3425 // IE 5 and 6 will use the ActiveX control
3426 req = new ActiveXObject("Microsoft.XMLHTTP");
3427 }
3428
3429 var caller = this;
3430 req.onreadystatechange = function () {
3431 if (req.readyState == 4) {
3432 if (req.status === 200 || // Normal http
3433 req.status === 0) { // Chrome w/ --allow-file-access-from-files
3434 caller.loadedEvent_(req.responseText);
3435 }
3436 }
3437 };
3438
3439 req.open("GET", data, true);
3440 req.send(null);
3441 }
3442 } else {
3443 console.error("Unknown data format: " + (typeof data));
3444 }
3445 };
3446
3447 /**
3448 * Changes various properties of the graph. These can include:
3449 * <ul>
3450 * <li>file: changes the source data for the graph</li>
3451 * <li>errorBars: changes whether the data contains stddev</li>
3452 * </ul>
3453 *
3454 * There's a huge variety of options that can be passed to this method. For a
3455 * full list, see http://dygraphs.com/options.html.
3456 *
3457 * @param {Object} input_attrs The new properties and values
3458 * @param {boolean} block_redraw Usually the chart is redrawn after every
3459 * call to updateOptions(). If you know better, you can pass true to
3460 * explicitly block the redraw. This can be useful for chaining
3461 * updateOptions() calls, avoiding the occasional infinite loop and
3462 * preventing redraws when it's not necessary (e.g. when updating a
3463 * callback).
3464 */
3465 Dygraph.prototype.updateOptions = function(input_attrs, block_redraw) {
3466 if (typeof(block_redraw) == 'undefined') block_redraw = false;
3467
3468 // copyUserAttrs_ drops the "file" parameter as a convenience to us.
3469 var file = input_attrs.file;
3470 var attrs = Dygraph.copyUserAttrs_(input_attrs);
3471
3472 // TODO(danvk): this is a mess. Move these options into attr_.
3473 if ('rollPeriod' in attrs) {
3474 this.rollPeriod_ = attrs.rollPeriod;
3475 }
3476 if ('dateWindow' in attrs) {
3477 this.dateWindow_ = attrs.dateWindow;
3478 if (!('isZoomedIgnoreProgrammaticZoom' in attrs)) {
3479 this.zoomed_x_ = (attrs.dateWindow !== null);
3480 }
3481 }
3482 if ('valueRange' in attrs && !('isZoomedIgnoreProgrammaticZoom' in attrs)) {
3483 this.zoomed_y_ = (attrs.valueRange !== null);
3484 }
3485
3486 // TODO(danvk): validate per-series options.
3487 // Supported:
3488 // strokeWidth
3489 // pointSize
3490 // drawPoints
3491 // highlightCircleSize
3492
3493 // Check if this set options will require new points.
3494 var requiresNewPoints = Dygraph.isPixelChangingOptionList(this.attr_("labels"), attrs);
3495
3496 Dygraph.updateDeep(this.user_attrs_, attrs);
3497
3498 this.attributes_.reparseSeries();
3499
3500 if (file) {
3501 // This event indicates that the data is about to change, but hasn't yet.
3502 // TODO(danvk): support cancelation of the update via this event.
3503 this.cascadeEvents_('dataWillUpdate', {});
3504
3505 this.file_ = file;
3506 if (!block_redraw) this.start_();
3507 } else {
3508 if (!block_redraw) {
3509 if (requiresNewPoints) {
3510 this.predraw_();
3511 } else {
3512 this.renderGraph_(false);
3513 }
3514 }
3515 }
3516 };
3517
3518 /**
3519 * Make a copy of input attributes, removing file as a convenience.
3520 */
3521 Dygraph.copyUserAttrs_ = function(attrs) {
3522 var my_attrs = {};
3523 for (var k in attrs) {
3524 if (!attrs.hasOwnProperty(k)) continue;
3525 if (k == 'file') continue;
3526 if (attrs.hasOwnProperty(k)) my_attrs[k] = attrs[k];
3527 }
3528 return my_attrs;
3529 };
3530
3531 /**
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.
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 *
3539 * @param {number} width Width (in pixels)
3540 * @param {number} height Height (in pixels)
3541 */
3542 Dygraph.prototype.resize = function(width, height) {
3543 if (this.resize_lock) {
3544 return;
3545 }
3546 this.resize_lock = true;
3547
3548 if ((width === null) != (height === null)) {
3549 console.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
3554 var old_width = this.width_;
3555 var old_height = this.height_;
3556
3557 if (width) {
3558 this.maindiv_.style.width = width + "px";
3559 this.maindiv_.style.height = height + "px";
3560 this.width_ = width;
3561 this.height_ = height;
3562 } else {
3563 this.width_ = this.maindiv_.clientWidth;
3564 this.height_ = this.maindiv_.clientHeight;
3565 }
3566
3567 if (old_width != this.width_ || old_height != this.height_) {
3568 // Resizing a canvas erases it, even when the size doesn't change, so
3569 // any resize needs to be followed by a redraw.
3570 this.resizeElements_();
3571 this.predraw_();
3572 }
3573
3574 this.resize_lock = false;
3575 };
3576
3577 /**
3578 * Adjusts the number of points in the rolling average. Updates the graph to
3579 * reflect the new averaging period.
3580 * @param {number} length Number of points over which to average the data.
3581 */
3582 Dygraph.prototype.adjustRoll = function(length) {
3583 this.rollPeriod_ = length;
3584 this.predraw_();
3585 };
3586
3587 /**
3588 * Returns a boolean array of visibility statuses.
3589 */
3590 Dygraph.prototype.visibility = function() {
3591 // Do lazy-initialization, so that this happens after we know the number of
3592 // data series.
3593 if (!this.getOption("visibility")) {
3594 this.attrs_.visibility = [];
3595 }
3596 // TODO(danvk): it looks like this could go into an infinite loop w/ user_attrs.
3597 while (this.getOption("visibility").length < this.numColumns() - 1) {
3598 this.attrs_.visibility.push(true);
3599 }
3600 return this.getOption("visibility");
3601 };
3602
3603 /**
3604 * Changes the visiblity of a series.
3605 *
3606 * @param {number} num the series index
3607 * @param {boolean} value true or false, identifying the visibility.
3608 */
3609 Dygraph.prototype.setVisibility = function(num, value) {
3610 var x = this.visibility();
3611 if (num < 0 || num >= x.length) {
3612 console.warn("invalid series number in setVisibility: " + num);
3613 } else {
3614 x[num] = value;
3615 this.predraw_();
3616 }
3617 };
3618
3619 /**
3620 * How large of an area will the dygraph render itself in?
3621 * This is used for testing.
3622 * @return A {width: w, height: h} object.
3623 * @private
3624 */
3625 Dygraph.prototype.size = function() {
3626 return { width: this.width_, height: this.height_ };
3627 };
3628
3629 /**
3630 * Update the list of annotations and redraw the chart.
3631 * See dygraphs.com/annotations.html for more info on how to use annotations.
3632 * @param ann {Array} An array of annotation objects.
3633 * @param suppressDraw {Boolean} Set to "true" to block chart redraw (optional).
3634 */
3635 Dygraph.prototype.setAnnotations = function(ann, suppressDraw) {
3636 // Only add the annotation CSS rule once we know it will be used.
3637 Dygraph.addAnnotationRule();
3638 this.annotations_ = ann;
3639 if (!this.layout_) {
3640 console.warn("Tried to setAnnotations before dygraph was ready. " +
3641 "Try setting them in a ready() block. See " +
3642 "dygraphs.com/tests/annotation.html");
3643 return;
3644 }
3645
3646 this.layout_.setAnnotations(this.annotations_);
3647 if (!suppressDraw) {
3648 this.predraw_();
3649 }
3650 };
3651
3652 /**
3653 * Return the list of annotations.
3654 */
3655 Dygraph.prototype.annotations = function() {
3656 return this.annotations_;
3657 };
3658
3659 /**
3660 * Get the list of label names for this graph. The first column is the
3661 * x-axis, so the data series names start at index 1.
3662 *
3663 * Returns null when labels have not yet been defined.
3664 */
3665 Dygraph.prototype.getLabels = function() {
3666 var labels = this.attr_("labels");
3667 return labels ? labels.slice() : null;
3668 };
3669
3670 /**
3671 * Get the index of a series (column) given its name. The first column is the
3672 * x-axis, so the data series start with index 1.
3673 */
3674 Dygraph.prototype.indexFromSetName = function(name) {
3675 return this.setIndexByName_[name];
3676 };
3677
3678 /**
3679 * Trigger a callback when the dygraph has drawn itself and is ready to be
3680 * manipulated. This is primarily useful when dygraphs has to do an XHR for the
3681 * data (i.e. a URL is passed as the data source) and the chart is drawn
3682 * asynchronously. If the chart has already drawn, the callback will fire
3683 * immediately.
3684 *
3685 * This is a good place to call setAnnotation().
3686 *
3687 * @param {function(!Dygraph)} callback The callback to trigger when the chart
3688 * is ready.
3689 */
3690 Dygraph.prototype.ready = function(callback) {
3691 if (this.is_initial_draw_) {
3692 this.readyFns_.push(callback);
3693 } else {
3694 callback.call(this, this);
3695 }
3696 };
3697
3698 /**
3699 * @private
3700 * Adds a default style for the annotation CSS classes to the document. This is
3701 * only executed when annotations are actually used. It is designed to only be
3702 * called once -- all calls after the first will return immediately.
3703 */
3704 Dygraph.addAnnotationRule = function() {
3705 // TODO(danvk): move this function into plugins/annotations.js?
3706 if (Dygraph.addedAnnotationCSS) return;
3707
3708 var rule = "border: 1px solid black; " +
3709 "background-color: white; " +
3710 "text-align: center;";
3711
3712 var styleSheetElement = document.createElement("style");
3713 styleSheetElement.type = "text/css";
3714 document.getElementsByTagName("head")[0].appendChild(styleSheetElement);
3715
3716 // Find the first style sheet that we can access.
3717 // We may not add a rule to a style sheet from another domain for security
3718 // reasons. This sometimes comes up when using gviz, since the Google gviz JS
3719 // adds its own style sheets from google.com.
3720 for (var i = 0; i < document.styleSheets.length; i++) {
3721 if (document.styleSheets[i].disabled) continue;
3722 var mysheet = document.styleSheets[i];
3723 try {
3724 if (mysheet.insertRule) { // Firefox
3725 var idx = mysheet.cssRules ? mysheet.cssRules.length : 0;
3726 mysheet.insertRule(".dygraphDefaultAnnotation { " + rule + " }", idx);
3727 } else if (mysheet.addRule) { // IE
3728 mysheet.addRule(".dygraphDefaultAnnotation", rule);
3729 }
3730 Dygraph.addedAnnotationCSS = true;
3731 return;
3732 } catch(err) {
3733 // Was likely a security exception.
3734 }
3735 }
3736
3737 console.warn("Unable to add default annotation CSS rule; display may be off.");
3738 };
3739
3740 return Dygraph;
3741
3742 })();