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