3 * Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
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)
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
22 The CSV file is of the form
24 Date,SeriesA,SeriesB,SeriesC
28 If the 'errorBars' option is set in the constructor, the input should be of
30 Date,SeriesA,SeriesB,...
31 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
32 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
34 If the 'fractions' option is set, the input should be of the form:
36 Date,SeriesA,SeriesB,...
37 YYYYMMDD,A1/B1,A2/B2,...
38 YYYYMMDD,A1/B1,A2/B2,...
40 And error bars will be calculated automatically using a binomial distribution.
42 For further documentation and examples, see http://dygraphs.com/
46 /*jshint globalstrict: true */
47 /*global DygraphRangeSelector:false, DygraphLayout:false, DygraphCanvasRenderer:false, G_vmlCanvasManager:false */
51 * Creates an interactive, zoomable chart.
54 * @param {div | String} div A div or the id of a div into which to construct
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.
64 var Dygraph
= function(div
, data
, opts
) {
65 if (arguments
.length
> 0) {
66 if (arguments
.length
== 4) {
67 // Old versions of dygraphs took in the series labels as a constructor
68 // parameter. This doesn't make sense anymore, but it's easy to continue
69 // to support this usage.
70 this.warn("Using deprecated four-argument dygraph constructor");
71 this.__old_init__(div
, data
, arguments
[2], arguments
[3]);
73 this.__init__(div
, data
, opts
);
78 Dygraph
.NAME
= "Dygraph";
79 Dygraph
.VERSION
= "1.2";
80 Dygraph
.__repr__
= function() {
81 return "[" + this.NAME
+ " " + this.VERSION
+ "]";
85 * Returns information about the Dygraph class.
87 Dygraph
.toString
= function() {
88 return this.__repr__();
91 // Various default values
92 Dygraph
.DEFAULT_ROLL_PERIOD
= 1;
93 Dygraph
.DEFAULT_WIDTH
= 480;
94 Dygraph
.DEFAULT_HEIGHT
= 320;
96 Dygraph
.ANIMATION_STEPS
= 10;
97 Dygraph
.ANIMATION_DURATION
= 200;
99 // These are defined before DEFAULT_ATTRS so that it can refer to them.
102 * Return a string version of a number. This respects the digitsAfterDecimal
103 * and maxNumberWidth options.
104 * @param {Number} x The number to be formatted
105 * @param {Dygraph} opts An options view
106 * @param {String} name The name of the point's data series
107 * @param {Dygraph} g The dygraph object
109 Dygraph
.numberValueFormatter
= function(x
, opts
, pt
, g
) {
110 var sigFigs
= opts('sigFigs');
112 if (sigFigs
!== null) {
113 // User has opted for a fixed number of significant figures.
114 return Dygraph
.floatFormat(x
, sigFigs
);
117 var digits
= opts('digitsAfterDecimal');
118 var maxNumberWidth
= opts('maxNumberWidth');
120 // switch to scientific notation if we underflow or overflow fixed display.
122 (Math
.abs(x
) >= Math
.pow(10, maxNumberWidth
) ||
123 Math
.abs(x
) < Math
.pow(10, -digits
))) {
124 return x
.toExponential(digits
);
126 return '' + Dygraph
.round_(x
, digits
);
131 * variant for use as an axisLabelFormatter.
134 Dygraph
.numberAxisLabelFormatter
= function(x
, granularity
, opts
, g
) {
135 return Dygraph
.numberValueFormatter(x
, opts
, g
);
139 * Convert a JS date (millis since epoch) to YYYY/MM/DD
140 * @param {Number} date The JavaScript date (ms since epoch)
141 * @return {String} A date of the form "YYYY/MM/DD"
144 Dygraph
.dateString_
= function(date
) {
145 var zeropad
= Dygraph
.zeropad
;
146 var d
= new Date(date
);
149 var year
= "" + d
.getFullYear();
150 // Get a 0 padded month string
151 var month
= zeropad(d
.getMonth() + 1); //months are 0-offset, sigh
152 // Get a 0 padded day string
153 var day
= zeropad(d
.getDate());
156 var frac
= d
.getHours() * 3600 + d
.getMinutes() * 60 + d
.getSeconds();
157 if (frac
) ret
= " " + Dygraph
.hmsString_(date
);
159 return year
+ "/" + month + "/" + day
+ ret
;
163 * Convert a JS date to a string appropriate to display on an axis that
164 * is displaying values at the stated granularity.
165 * @param {Date} date The date to format
166 * @param {Number} granularity One of the Dygraph granularity constants
167 * @return {String} The formatted date
170 Dygraph
.dateAxisFormatter
= function(date
, granularity
) {
171 if (granularity
>= Dygraph
.DECADAL
) {
172 return date
.strftime('%Y');
173 } else if (granularity
>= Dygraph
.MONTHLY
) {
174 return date
.strftime('%b %y');
176 var frac
= date
.getHours() * 3600 + date
.getMinutes() * 60 + date
.getSeconds() + date
.getMilliseconds();
177 if (frac
=== 0 || granularity
>= Dygraph
.DAILY
) {
178 return new Date(date
.getTime() + 3600*1000).strftime('%d%b');
180 return Dygraph
.hmsString_(date
.getTime());
186 // Default attribute values.
187 Dygraph
.DEFAULT_ATTRS
= {
188 highlightCircleSize
: 3,
192 // TODO(danvk): move defaults from createStatusMessage_ here.
194 labelsSeparateLines
: false,
195 labelsShowZeroValues
: true,
198 showLabelsOnHighlight
: true,
200 digitsAfterDecimal
: 2,
207 axisLabelFontSize
: 14,
213 xValueParser
: Dygraph
.dateParser
,
220 wilsonInterval
: true, // only relevant if fractions is true
224 connectSeparatedPoints
: false,
227 hideOverlayOnMouseOut
: true,
229 // TODO(danvk): support 'onmouseover' and 'never', and remove synonyms.
230 legend
: 'onmouseover', // the only relevant value at the moment is 'always'.
235 // Sizes of the various chart labels.
242 axisLineColor
: "black",
245 axisLabelColor
: "black",
246 axisLabelFont
: "Arial", // TODO(danvk): is this implemented?
250 gridLineColor
: "rgb(128,128,128)",
252 interactionModel
: null, // will be set to Dygraph.Interaction.defaultModel
253 animatedZooms
: false, // (for now)
255 // Range selector options
256 showRangeSelector
: false,
257 rangeSelectorHeight
: 40,
258 rangeSelectorPlotStrokeColor
: "#808FAB",
259 rangeSelectorPlotFillColor
: "#A7B1C4",
265 axisLabelFormatter
: Dygraph
.dateAxisFormatter
,
266 valueFormatter
: Dygraph
.dateString_
,
267 ticker
: null // will be set in dygraph-tickers.js
271 valueFormatter
: Dygraph
.numberValueFormatter
,
272 axisLabelFormatter
: Dygraph
.numberAxisLabelFormatter
,
273 ticker
: null // will be set in dygraph-tickers.js
277 valueFormatter
: Dygraph
.numberValueFormatter
,
278 axisLabelFormatter
: Dygraph
.numberAxisLabelFormatter
,
279 ticker
: null // will be set in dygraph-tickers.js
284 // Directions for panning and zooming. Use bit operations when combined
285 // values are possible.
286 Dygraph
.HORIZONTAL
= 1;
287 Dygraph
.VERTICAL
= 2;
289 // Used for initializing annotation CSS rules only once.
290 Dygraph
.addedAnnotationCSS
= false;
292 Dygraph
.prototype.__old_init__
= function(div
, file
, labels
, attrs
) {
293 // Labels is no longer a constructor parameter, since it's typically set
294 // directly from the data source. It also conains a name for the x-axis,
295 // which the previous constructor form did not.
296 if (labels
!== null) {
297 var new_labels
= ["Date"];
298 for (var i
= 0; i
< labels
.length
; i
++) new_labels
.push(labels
[i
]);
299 Dygraph
.update(attrs
, { 'labels': new_labels
});
301 this.__init__(div
, file
, attrs
);
305 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
306 * and context <canvas> inside of it. See the constructor for details.
308 * @param {Element} div the Element to render the graph into.
309 * @param {String | Function} file Source data
310 * @param {Object} attrs Miscellaneous other options
313 Dygraph
.prototype.__init__
= function(div
, file
, attrs
) {
314 // Hack for IE: if we're using excanvas and the document hasn't finished
315 // loading yet (and hence may not have initialized whatever it needs to
316 // initialize), then keep calling this routine periodically until it has.
317 if (/MSIE/.test(navigator
.userAgent
) && !window
.opera
&&
318 typeof(G_vmlCanvasManager
) != 'undefined' &&
319 document
.readyState
!= 'complete') {
321 setTimeout(function() { self
.__init__(div
, file
, attrs
); }, 100);
325 // Support two-argument constructor
326 if (attrs
=== null || attrs
=== undefined
) { attrs
= {}; }
328 attrs
= Dygraph
.mapLegacyOptions_(attrs
);
331 Dygraph
.error("Constructing dygraph with a non-existent div!");
335 this.isUsingExcanvas_
= typeof(G_vmlCanvasManager
) != 'undefined';
337 // Copy the important bits into the object
338 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
341 this.rollPeriod_
= attrs
.rollPeriod
|| Dygraph
.DEFAULT_ROLL_PERIOD
;
342 this.previousVerticalX_
= -1;
343 this.fractions_
= attrs
.fractions
|| false;
344 this.dateWindow_
= attrs
.dateWindow
|| null;
346 this.is_initial_draw_
= true;
347 this.annotations_
= [];
349 // Zoomed indicators - These indicate when the graph has been zoomed and on what axis.
350 this.zoomed_x_
= false;
351 this.zoomed_y_
= false;
353 // Clear the div. This ensure that, if multiple dygraphs are passed the same
354 // div, then only one will be drawn.
357 // For historical reasons, the 'width' and 'height' options trump all CSS
358 // rules _except_ for an explicit 'width' or 'height' on the div.
359 // As an added convenience, if the div has zero height (like <div></div> does
360 // without any styles), then we use a default height/width
.
361 if (div
.style
.width
=== '' && attrs
.width
) {
362 div
.style
.width
= attrs
.width
+ "px";
364 if (div
.style
.height
=== '' && attrs
.height
) {
365 div
.style
.height
= attrs
.height
+ "px";
367 if (div
.style
.height
=== '' && div
.clientHeight
=== 0) {
368 div
.style
.height
= Dygraph
.DEFAULT_HEIGHT
+ "px";
369 if (div
.style
.width
=== '') {
370 div
.style
.width
= Dygraph
.DEFAULT_WIDTH
+ "px";
373 // these will be zero if the dygraph's div is hidden.
374 this.width_
= div
.clientWidth
;
375 this.height_
= div
.clientHeight
;
377 // TODO(danvk): set fillGraph to be part of attrs_ here, not user_attrs_.
378 if (attrs
.stackedGraph
) {
379 attrs
.fillGraph
= true;
380 // TODO(nikhilk): Add any other stackedGraph checks here.
383 // Dygraphs has many options, some of which interact with one another.
384 // To keep track of everything, we maintain two sets of options:
386 // this.user_attrs_ only options explicitly set by the user.
387 // this.attrs_ defaults, options derived from user_attrs_, data.
389 // Options are then accessed this.attr_('attr'), which first looks at
390 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
391 // defaults without overriding behavior that the user specifically asks for.
392 this.user_attrs_
= {};
393 Dygraph
.update(this.user_attrs_
, attrs
);
395 // This sequence ensures that Dygraph.DEFAULT_ATTRS is never modified.
397 Dygraph
.updateDeep(this.attrs_
, Dygraph
.DEFAULT_ATTRS
);
399 this.boundaryIds_
= [];
400 this.setIndexByName_
= {};
402 // Create the containing DIV and other interactive elements
403 this.createInterface_();
409 * Returns the zoomed status of the chart for one or both axes.
411 * Axis is an optional parameter. Can be set to 'x' or 'y'.
413 * The zoomed status for an axis is set whenever a user zooms using the mouse
414 * or when the dateWindow or valueRange are updated (unless the isZoomedIgnoreProgrammaticZoom
415 * option is also specified).
417 Dygraph
.prototype.isZoomed
= function(axis
) {
418 if (axis
== null) return this.zoomed_x_
|| this.zoomed_y_
;
419 if (axis
=== 'x') return this.zoomed_x_
;
420 if (axis
=== 'y') return this.zoomed_y_
;
421 throw "axis parameter is [" + axis
+ "] must be null, 'x' or 'y'.";
425 * Returns information about the Dygraph object, including its containing ID.
427 Dygraph
.prototype.toString
= function() {
428 var maindiv
= this.maindiv_
;
429 var id
= (maindiv
&& maindiv
.id
) ? maindiv
.id
: maindiv
;
430 return "[Dygraph " + id
+ "]";
435 * Returns the value of an option. This may be set by the user (either in the
436 * constructor or by calling updateOptions) or by dygraphs, and may be set to a
438 * @param { String } name The name of the option, e.g. 'rollPeriod'.
439 * @param { String } [seriesName] The name of the series to which the option
440 * will be applied. If no per-series value of this option is available, then
441 * the global value is returned. This is optional.
442 * @return { ... } The value of the option.
444 Dygraph
.prototype.attr_
= function(name
, seriesName
) {
445 // <REMOVE_FOR_COMBINED>
446 if (typeof(Dygraph
.OPTIONS_REFERENCE
) === 'undefined') {
447 this.error('Must include options reference JS for testing');
448 } else if (!Dygraph
.OPTIONS_REFERENCE
.hasOwnProperty(name
)) {
449 this.error('Dygraphs is using property ' + name
+ ', which has no entry ' +
450 'in the Dygraphs.OPTIONS_REFERENCE listing.');
451 // Only log this error once.
452 Dygraph
.OPTIONS_REFERENCE
[name
] = true;
454 // </REMOVE_FOR_COMBINED
>
456 typeof(this.user_attrs_
[seriesName
]) != 'undefined' &&
457 this.user_attrs_
[seriesName
] !== null &&
458 typeof(this.user_attrs_
[seriesName
][name
]) != 'undefined') {
459 return this.user_attrs_
[seriesName
][name
];
460 } else if (typeof(this.user_attrs_
[name
]) != 'undefined') {
461 return this.user_attrs_
[name
];
462 } else if (typeof(this.attrs_
[name
]) != 'undefined') {
463 return this.attrs_
[name
];
471 * @param String} axis The name of the axis (i.e. 'x', 'y' or 'y2')
472 * @return { ... } A function mapping string -> option value
474 Dygraph
.prototype.optionsViewForAxis_
= function(axis
) {
476 return function(opt
) {
477 var axis_opts
= self
.user_attrs_
.axes
;
478 if (axis_opts
&& axis_opts
[axis
] && axis_opts
[axis
][opt
]) {
479 return axis_opts
[axis
][opt
];
481 // user-specified attributes always trump defaults, even if they're less
483 if (typeof(self
.user_attrs_
[opt
]) != 'undefined') {
484 return self
.user_attrs_
[opt
];
487 axis_opts
= self
.attrs_
.axes
;
488 if (axis_opts
&& axis_opts
[axis
] && axis_opts
[axis
][opt
]) {
489 return axis_opts
[axis
][opt
];
491 // check old-style axis options
492 // TODO(danvk): add a deprecation warning if either of these match.
493 if (axis
== 'y' && self
.axes_
[0].hasOwnProperty(opt
)) {
494 return self
.axes_
[0][opt
];
495 } else if (axis
== 'y2' && self
.axes_
[1].hasOwnProperty(opt
)) {
496 return self
.axes_
[1][opt
];
498 return self
.attr_(opt
);
503 * Returns the current rolling period, as set by the user or an option.
504 * @return {Number} The number of points in the rolling window
506 Dygraph
.prototype.rollPeriod
= function() {
507 return this.rollPeriod_
;
511 * Returns the currently-visible x-range. This can be affected by zooming,
512 * panning or a call to updateOptions.
513 * Returns a two-element array: [left, right].
514 * If the Dygraph has dates on the x-axis, these will be millis since epoch.
516 Dygraph
.prototype.xAxisRange
= function() {
517 return this.dateWindow_
? this.dateWindow_
: this.xAxisExtremes();
521 * Returns the lower- and upper-bound x-axis values of the
524 Dygraph
.prototype.xAxisExtremes
= function() {
525 var left
= this.rawData_
[0][0];
526 var right
= this.rawData_
[this.rawData_
.length
- 1][0];
527 return [left
, right
];
531 * Returns the currently-visible y-range for an axis. This can be affected by
532 * zooming, panning or a call to updateOptions. Axis indices are zero-based. If
533 * called with no arguments, returns the range of the first axis.
534 * Returns a two-element array: [bottom, top].
536 Dygraph
.prototype.yAxisRange
= function(idx
) {
537 if (typeof(idx
) == "undefined") idx
= 0;
538 if (idx
< 0 || idx
>= this.axes_
.length
) {
541 var axis
= this.axes_
[idx
];
542 return [ axis
.computedValueRange
[0], axis
.computedValueRange
[1] ];
546 * Returns the currently-visible y-ranges for each axis. This can be affected by
547 * zooming, panning, calls to updateOptions, etc.
548 * Returns an array of [bottom, top] pairs, one for each y-axis.
550 Dygraph
.prototype.yAxisRanges
= function() {
552 for (var i
= 0; i
< this.axes_
.length
; i
++) {
553 ret
.push(this.yAxisRange(i
));
558 // TODO(danvk): use these functions throughout dygraphs.
560 * Convert from data coordinates to canvas/div X/Y coordinates.
561 * If specified, do this conversion for the coordinate system of a particular
562 * axis. Uses the first axis by default.
563 * Returns a two-element array: [X, Y]
565 * Note: use toDomXCoord instead of toDomCoords(x, null) and use toDomYCoord
566 * instead of toDomCoords(null, y, axis).
568 Dygraph
.prototype.toDomCoords
= function(x
, y
, axis
) {
569 return [ this.toDomXCoord(x
), this.toDomYCoord(y
, axis
) ];
573 * Convert from data x coordinates to canvas/div X coordinate.
574 * If specified, do this conversion for the coordinate system of a particular
576 * Returns a single value or null if x is null.
578 Dygraph
.prototype.toDomXCoord
= function(x
) {
583 var area
= this.plotter_
.area
;
584 var xRange
= this.xAxisRange();
585 return area
.x
+ (x
- xRange
[0]) / (xRange
[1] - xRange
[0]) * area
.w
;
589 * Convert from data x coordinates to canvas/div Y coordinate and optional
590 * axis. Uses the first axis by default.
592 * returns a single value or null if y is null.
594 Dygraph
.prototype.toDomYCoord
= function(y
, axis
) {
595 var pct
= this.toPercentYCoord(y
, axis
);
600 var area
= this.plotter_
.area
;
601 return area
.y
+ pct
* area
.h
;
605 * Convert from canvas/div coords to data coordinates.
606 * If specified, do this conversion for the coordinate system of a particular
607 * axis. Uses the first axis by default.
608 * Returns a two-element array: [X, Y].
610 * Note: use toDataXCoord instead of toDataCoords(x, null) and use toDataYCoord
611 * instead of toDataCoords(null, y, axis).
613 Dygraph
.prototype.toDataCoords
= function(x
, y
, axis
) {
614 return [ this.toDataXCoord(x
), this.toDataYCoord(y
, axis
) ];
618 * Convert from canvas/div x coordinate to data coordinate.
620 * If x is null, this returns null.
622 Dygraph
.prototype.toDataXCoord
= function(x
) {
627 var area
= this.plotter_
.area
;
628 var xRange
= this.xAxisRange();
629 return xRange
[0] + (x
- area
.x
) / area
.w
* (xRange
[1] - xRange
[0]);
633 * Convert from canvas/div y coord to value.
635 * If y is null, this returns null.
636 * if axis is null, this uses the first axis.
638 Dygraph
.prototype.toDataYCoord
= function(y
, axis
) {
643 var area
= this.plotter_
.area
;
644 var yRange
= this.yAxisRange(axis
);
646 if (typeof(axis
) == "undefined") axis
= 0;
647 if (!this.axes_
[axis
].logscale
) {
648 return yRange
[0] + (area
.y
+ area
.h
- y
) / area
.h
* (yRange
[1] - yRange
[0]);
650 // Computing the inverse of toDomCoord.
651 var pct
= (y
- area
.y
) / area
.h
;
653 // Computing the inverse of toPercentYCoord. The function was arrived at with
654 // the following steps:
656 // Original calcuation:
657 // pct = (logr1 - Dygraph.log10(y)) / (logr1
- Dygraph
.log10(yRange
[0]));
659 // Move denominator to both sides:
660 // pct * (logr1 - Dygraph.log10(yRange[0])) = logr1 - Dygraph.log10(y);
662 // subtract logr1, and take the negative value.
663 // logr1 - (pct * (logr1 - Dygraph.log10(yRange[0]))) = Dygraph.log10(y);
665 // Swap both sides of the equation, and we can compute the log of the
666 // return value. Which means we just need to use that as the exponent in
668 // Dygraph.log10(y) = logr1 - (pct * (logr1 - Dygraph.log10(yRange[0])));
670 var logr1
= Dygraph
.log10(yRange
[1]);
671 var exponent
= logr1
- (pct
* (logr1
- Dygraph
.log10(yRange
[0])));
672 var value
= Math
.pow(Dygraph
.LOG_SCALE
, exponent
);
678 * Converts a y for an axis to a percentage from the top to the
679 * bottom of the drawing area.
681 * If the coordinate represents a value visible on the canvas, then
682 * the value will be between 0 and 1, where 0 is the top of the canvas.
683 * However, this method will return values outside the range, as
684 * values can fall outside the canvas.
686 * If y is null, this returns null.
687 * if axis is null, this uses the first axis.
689 * @param { Number } y The data y-coordinate.
690 * @param { Number } [axis] The axis number on which the data coordinate lives.
691 * @return { Number } A fraction in [0, 1] where 0 = the top edge.
693 Dygraph
.prototype.toPercentYCoord
= function(y
, axis
) {
697 if (typeof(axis
) == "undefined") axis
= 0;
699 var yRange
= this.yAxisRange(axis
);
702 if (!this.axes_
[axis
].logscale
) {
703 // yRange[1] - y is unit distance from the bottom.
704 // yRange[1] - yRange[0] is the scale of the range.
705 // (yRange[1] - y) / (yRange
[1] - yRange
[0]) is the
% from the bottom
.
706 pct
= (yRange
[1] - y
) / (yRange
[1] - yRange
[0]);
708 var logr1
= Dygraph
.log10(yRange
[1]);
709 pct
= (logr1
- Dygraph
.log10(y
)) / (logr1
- Dygraph
.log10(yRange
[0]));
715 * Converts an x value to a percentage from the left to the right of
718 * If the coordinate represents a value visible on the canvas, then
719 * the value will be between 0 and 1, where 0 is the left of the canvas.
720 * However, this method will return values outside the range, as
721 * values can fall outside the canvas.
723 * If x is null, this returns null.
724 * @param { Number } x The data x-coordinate.
725 * @return { Number } A fraction in [0, 1] where 0 = the left edge.
727 Dygraph
.prototype.toPercentXCoord
= function(x
) {
732 var xRange
= this.xAxisRange();
733 return (x
- xRange
[0]) / (xRange
[1] - xRange
[0]);
737 * Returns the number of columns (including the independent variable).
738 * @return { Integer } The number of columns.
740 Dygraph
.prototype.numColumns
= function() {
741 return this.rawData_
[0] ? this.rawData_
[0].length
: this.attr_("labels").length
;
745 * Returns the number of rows (excluding any header/label row).
746 * @return { Integer } The number of rows, less any header.
748 Dygraph
.prototype.numRows
= function() {
749 return this.rawData_
.length
;
753 * Returns the full range of the x-axis, as determined by the most extreme
754 * values in the data set. Not affected by zooming, visibility, etc.
755 * TODO(danvk): merge w/ xAxisExtremes
756 * @return { Array<Number> } A [low, high] pair
759 Dygraph
.prototype.fullXRange_
= function() {
760 if (this.numRows() > 0) {
761 return [this.rawData_
[0][0], this.rawData_
[this.numRows() - 1][0]];
768 * Returns the value in the given row and column. If the row and column exceed
769 * the bounds on the data, returns null. Also returns null if the value is
771 * @param { Number} row The row number of the data (0-based). Row 0 is the
772 * first row of data, not a header row.
773 * @param { Number} col The column number of the data (0-based)
774 * @return { Number } The value in the specified cell or null if the row/col
777 Dygraph
.prototype.getValue
= function(row
, col
) {
778 if (row
< 0 || row
> this.rawData_
.length
) return null;
779 if (col
< 0 || col
> this.rawData_
[row
].length
) return null;
781 return this.rawData_
[row
][col
];
785 * Generates interface elements for the Dygraph: a containing div, a div to
786 * display the current point, and a textbox to adjust the rolling average
787 * period. Also creates the Renderer/Layout elements.
790 Dygraph
.prototype.createInterface_
= function() {
791 // Create the all-enclosing graph div
792 var enclosing
= this.maindiv_
;
794 this.graphDiv
= document
.createElement("div");
795 this.graphDiv
.style
.width
= this.width_
+ "px";
796 this.graphDiv
.style
.height
= this.height_
+ "px";
797 enclosing
.appendChild(this.graphDiv
);
799 // Create the canvas for interactive parts of the chart.
800 this.canvas_
= Dygraph
.createCanvas();
801 this.canvas_
.style
.position
= "absolute";
802 this.canvas_
.width
= this.width_
;
803 this.canvas_
.height
= this.height_
;
804 this.canvas_
.style
.width
= this.width_
+ "px"; // for IE
805 this.canvas_
.style
.height
= this.height_
+ "px"; // for IE
807 this.canvas_ctx_
= Dygraph
.getContext(this.canvas_
);
809 // ... and for static parts of the chart.
810 this.hidden_
= this.createPlotKitCanvas_(this.canvas_
);
811 this.hidden_ctx_
= Dygraph
.getContext(this.hidden_
);
813 if (this.attr_('showRangeSelector')) {
814 // The range selector must be created here so that its canvases and contexts get created here.
815 // For some reason, if the canvases and contexts don't get created here, things don't work in IE.
816 // The range selector also sets xAxisHeight in order to reserve space.
817 this.rangeSelector_
= new DygraphRangeSelector(this);
820 // The interactive parts of the graph are drawn on top of the chart.
821 this.graphDiv
.appendChild(this.hidden_
);
822 this.graphDiv
.appendChild(this.canvas_
);
823 this.mouseEventElement_
= this.createMouseEventElement_();
825 // Create the grapher
826 this.layout_
= new DygraphLayout(this);
828 if (this.rangeSelector_
) {
829 // This needs to happen after the graph canvases are added to the div and the layout object is created.
830 this.rangeSelector_
.addToGraph(this.graphDiv
, this.layout_
);
834 Dygraph
.addEvent(this.mouseEventElement_
, 'mousemove', function(e
) {
835 dygraph
.mouseMove_(e
);
837 Dygraph
.addEvent(this.mouseEventElement_
, 'mouseout', function(e
) {
838 dygraph
.mouseOut_(e
);
841 this.createStatusMessage_();
842 this.createDragInterface_();
844 this.resizeHandler
= function(e
) {
848 // Update when the window is resized.
849 // TODO(danvk): drop frames depending on complexity of the chart.
850 Dygraph
.addEvent(window
, 'resize', this.resizeHandler
);
854 * Detach DOM elements in the dygraph and null out all data references.
855 * Calling this when you're done with a dygraph can dramatically reduce memory
856 * usage. See, e.g., the tests/perf.html example.
858 Dygraph
.prototype.destroy
= function() {
859 var removeRecursive
= function(node
) {
860 while (node
.hasChildNodes()) {
861 removeRecursive(node
.firstChild
);
862 node
.removeChild(node
.firstChild
);
865 removeRecursive(this.maindiv_
);
867 var nullOut
= function(obj
) {
869 if (typeof(obj
[n
]) === 'object') {
874 // remove event handlers
875 Dygraph
.removeEvent(window
,'resize',this.resizeHandler
);
876 this.resizeHandler
= null;
877 // These may not all be necessary, but it can't hurt...
878 nullOut(this.layout_
);
879 nullOut(this.plotter_
);
884 * Creates the canvas on which the chart will be drawn. Only the Renderer ever
885 * draws on this particular canvas. All Dygraph work (i.e. drawing hover dots
886 * or the zoom rectangles) is done on this.canvas_.
887 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
888 * @return {Object} The newly-created canvas
891 Dygraph
.prototype.createPlotKitCanvas_
= function(canvas
) {
892 var h
= Dygraph
.createCanvas();
893 h
.style
.position
= "absolute";
894 // TODO(danvk): h should be offset from canvas. canvas needs to include
895 // some extra area to make it easier to zoom in on the far left and far
896 // right. h needs to be precisely the plot area, so that clipping occurs.
897 h
.style
.top
= canvas
.style
.top
;
898 h
.style
.left
= canvas
.style
.left
;
899 h
.width
= this.width_
;
900 h
.height
= this.height_
;
901 h
.style
.width
= this.width_
+ "px"; // for IE
902 h
.style
.height
= this.height_
+ "px"; // for IE
907 * Creates an overlay element used to handle mouse events.
908 * @return {Object} The mouse event element.
911 Dygraph
.prototype.createMouseEventElement_
= function() {
912 if (this.isUsingExcanvas_
) {
913 var elem
= document
.createElement("div");
914 elem
.style
.position
= 'absolute';
915 elem
.style
.backgroundColor
= 'white';
916 elem
.style
.filter
= 'alpha(opacity=0)';
917 elem
.style
.width
= this.width_
+ "px";
918 elem
.style
.height
= this.height_
+ "px";
919 this.graphDiv
.appendChild(elem
);
927 * Generate a set of distinct colors for the data series. This is done with a
928 * color wheel. Saturation/Value are customizable, and the hue is
929 * equally-spaced around the color wheel. If a custom set of colors is
930 * specified, that is used instead.
933 Dygraph
.prototype.setColors_
= function() {
934 var num
= this.attr_("labels").length
- 1;
936 var colors
= this.attr_('colors');
939 var sat
= this.attr_('colorSaturation') || 1.0;
940 var val
= this.attr_('colorValue') || 0.5;
941 var half
= Math
.ceil(num
/ 2);
942 for (i
= 1; i
<= num
; i
++) {
943 if (!this.visibility()[i
-1]) continue;
944 // alternate colors for high contrast.
945 var idx
= i
% 2 ? Math
.ceil(i
/ 2) : (half + i / 2);
946 var hue
= (1.0 * idx
/ (1 + num
));
947 this.colors_
.push(Dygraph
.hsvToRGB(hue
, sat
, val
));
950 for (i
= 0; i
< num
; i
++) {
951 if (!this.visibility()[i
]) continue;
952 var colorStr
= colors
[i
% colors
.length
];
953 this.colors_
.push(colorStr
);
957 this.plotter_
.setColors(this.colors_
);
961 * Return the list of colors. This is either the list of colors passed in the
962 * attributes or the autogenerated list of rgb(r,g,b) strings.
963 * @return {Array<string>} The list of colors.
965 Dygraph
.prototype.getColors
= function() {
970 * Create the div that contains information on the selected point(s)
971 * This goes in the top right of the canvas, unless an external div has already
975 Dygraph
.prototype.createStatusMessage_
= function() {
976 var userLabelsDiv
= this.user_attrs_
.labelsDiv
;
977 if (userLabelsDiv
&& null !== userLabelsDiv
&&
978 (typeof(userLabelsDiv
) == "string" || userLabelsDiv
instanceof String
)) {
979 this.user_attrs_
.labelsDiv
= document
.getElementById(userLabelsDiv
);
981 if (!this.attr_("labelsDiv")) {
982 var divWidth
= this.attr_('labelsDivWidth');
984 "position": "absolute",
987 "width": divWidth
+ "px",
989 "left": (this.width_
- divWidth
- 2) + "px",
990 "background": "white",
992 "overflow": "hidden"};
993 Dygraph
.update(messagestyle
, this.attr_('labelsDivStyles'));
994 var div
= document
.createElement("div");
995 div
.className
= "dygraph-legend";
996 for (var name
in messagestyle
) {
997 if (messagestyle
.hasOwnProperty(name
)) {
998 div
.style
[name
] = messagestyle
[name
];
1001 this.graphDiv
.appendChild(div
);
1002 this.attrs_
.labelsDiv
= div
;
1007 * Position the labels div so that:
1008 * - its right edge is flush with the right edge of the charting area
1009 * - its top edge is flush with the top edge of the charting area
1012 Dygraph
.prototype.positionLabelsDiv_
= function() {
1013 // Don't touch a user-specified labelsDiv.
1014 if (this.user_attrs_
.hasOwnProperty("labelsDiv")) return;
1016 var area
= this.plotter_
.area
;
1017 var div
= this.attr_("labelsDiv");
1018 div
.style
.left
= area
.x
+ area
.w
- this.attr_("labelsDivWidth") - 1 + "px";
1019 div
.style
.top
= area
.y
+ "px";
1023 * Create the text box to adjust the averaging period
1026 Dygraph
.prototype.createRollInterface_
= function() {
1027 // Create a roller if one doesn't exist already.
1028 if (!this.roller_
) {
1029 this.roller_
= document
.createElement("input");
1030 this.roller_
.type
= "text";
1031 this.roller_
.style
.display
= "none";
1032 this.graphDiv
.appendChild(this.roller_
);
1035 var display
= this.attr_('showRoller') ? 'block' : 'none';
1037 var area
= this.plotter_
.area
;
1038 var textAttr
= { "position": "absolute",
1040 "top": (area
.y
+ area
.h
- 25) + "px",
1041 "left": (area
.x
+ 1) + "px",
1044 this.roller_
.size
= "2";
1045 this.roller_
.value
= this.rollPeriod_
;
1046 for (var name
in textAttr
) {
1047 if (textAttr
.hasOwnProperty(name
)) {
1048 this.roller_
.style
[name
] = textAttr
[name
];
1053 this.roller_
.onchange
= function() { dygraph
.adjustRoll(dygraph
.roller_
.value
); };
1058 * Converts page the x-coordinate of the event to pixel x-coordinates on the
1059 * canvas (i.e. DOM Coords).
1061 Dygraph
.prototype.dragGetX_
= function(e
, context
) {
1062 return Dygraph
.pageX(e
) - context
.px
;
1067 * Converts page the y-coordinate of the event to pixel y-coordinates on the
1068 * canvas (i.e. DOM Coords).
1070 Dygraph
.prototype.dragGetY_
= function(e
, context
) {
1071 return Dygraph
.pageY(e
) - context
.py
;
1075 * Set up all the mouse handlers needed to capture dragging behavior for zoom
1079 Dygraph
.prototype.createDragInterface_
= function() {
1081 // Tracks whether the mouse is down right now
1083 isPanning
: false, // is this drag part of a pan?
1084 is2DPan
: false, // if so, is that pan 1- or 2-dimensional?
1085 dragStartX
: null, // pixel coordinates
1086 dragStartY
: null, // pixel coordinates
1087 dragEndX
: null, // pixel coordinates
1088 dragEndY
: null, // pixel coordinates
1089 dragDirection
: null,
1090 prevEndX
: null, // pixel coordinates
1091 prevEndY
: null, // pixel coordinates
1092 prevDragDirection
: null,
1094 // The value on the left side of the graph when a pan operation starts.
1095 initialLeftmostDate
: null,
1097 // The number of units each pixel spans. (This won't be valid for log
1099 xUnitsPerPixel
: null,
1101 // TODO(danvk): update this comment
1102 // The range in second/value units that the viewport encompasses during a
1103 // panning operation.
1106 // Top-left corner of the canvas, in DOM coords
1107 // TODO(konigsberg): Rename topLeftCanvasX, topLeftCanvasY.
1111 // Values for use with panEdgeFraction, which limit how far outside the
1112 // graph's data boundaries it can be panned.
1113 boundedDates
: null, // [minDate, maxDate]
1114 boundedValues
: null, // [[minValue, maxValue] ...]
1116 initializeMouseDown
: function(event
, g
, context
) {
1117 // prevents mouse drags from selecting page text.
1118 if (event
.preventDefault
) {
1119 event
.preventDefault(); // Firefox, Chrome, etc.
1121 event
.returnValue
= false; // IE
1122 event
.cancelBubble
= true;
1125 context
.px
= Dygraph
.findPosX(g
.canvas_
);
1126 context
.py
= Dygraph
.findPosY(g
.canvas_
);
1127 context
.dragStartX
= g
.dragGetX_(event
, context
);
1128 context
.dragStartY
= g
.dragGetY_(event
, context
);
1132 var interactionModel
= this.attr_("interactionModel");
1134 // Self is the graph.
1137 // Function that binds the graph and context to the handler.
1138 var bindHandler
= function(handler
) {
1139 return function(event
) {
1140 handler(event
, self
, context
);
1144 for (var eventName
in interactionModel
) {
1145 if (!interactionModel
.hasOwnProperty(eventName
)) continue;
1146 Dygraph
.addEvent(this.mouseEventElement_
, eventName
,
1147 bindHandler(interactionModel
[eventName
]));
1150 // If the user releases the mouse button during a drag, but not over the
1151 // canvas, then it doesn't count as a zooming action.
1152 Dygraph
.addEvent(document
, 'mouseup', function(event
) {
1153 if (context
.isZooming
|| context
.isPanning
) {
1154 context
.isZooming
= false;
1155 context
.dragStartX
= null;
1156 context
.dragStartY
= null;
1159 if (context
.isPanning
) {
1160 context
.isPanning
= false;
1161 context
.draggingDate
= null;
1162 context
.dateRange
= null;
1163 for (var i
= 0; i
< self
.axes_
.length
; i
++) {
1164 delete self
.axes_
[i
].draggingValue
;
1165 delete self
.axes_
[i
].dragValueRange
;
1172 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
1173 * up any previous zoom rectangles that were drawn. This could be optimized to
1174 * avoid extra redrawing, but it's tricky to avoid interactions with the status
1177 * @param {Number} direction the direction of the zoom rectangle. Acceptable
1178 * values are Dygraph.HORIZONTAL and Dygraph.VERTICAL.
1179 * @param {Number} startX The X position where the drag started, in canvas
1181 * @param {Number} endX The current X position of the drag, in canvas coords.
1182 * @param {Number} startY The Y position where the drag started, in canvas
1184 * @param {Number} endY The current Y position of the drag, in canvas coords.
1185 * @param {Number} prevDirection the value of direction on the previous call to
1186 * this function. Used to avoid excess redrawing
1187 * @param {Number} prevEndX The value of endX on the previous call to this
1188 * function. Used to avoid excess redrawing
1189 * @param {Number} prevEndY The value of endY on the previous call to this
1190 * function. Used to avoid excess redrawing
1193 Dygraph
.prototype.drawZoomRect_
= function(direction
, startX
, endX
, startY
,
1194 endY
, prevDirection
, prevEndX
,
1196 var ctx
= this.canvas_ctx_
;
1198 // Clean up from the previous rect if necessary
1199 if (prevDirection
== Dygraph
.HORIZONTAL
) {
1200 ctx
.clearRect(Math
.min(startX
, prevEndX
), this.layout_
.getPlotArea().y
,
1201 Math
.abs(startX
- prevEndX
), this.layout_
.getPlotArea().h
);
1202 } else if (prevDirection
== Dygraph
.VERTICAL
){
1203 ctx
.clearRect(this.layout_
.getPlotArea().x
, Math
.min(startY
, prevEndY
),
1204 this.layout_
.getPlotArea().w
, Math
.abs(startY
- prevEndY
));
1207 // Draw a light-grey rectangle to show the new viewing area
1208 if (direction
== Dygraph
.HORIZONTAL
) {
1209 if (endX
&& startX
) {
1210 ctx
.fillStyle
= "rgba(128,128,128,0.33)";
1211 ctx
.fillRect(Math
.min(startX
, endX
), this.layout_
.getPlotArea().y
,
1212 Math
.abs(endX
- startX
), this.layout_
.getPlotArea().h
);
1214 } else if (direction
== Dygraph
.VERTICAL
) {
1215 if (endY
&& startY
) {
1216 ctx
.fillStyle
= "rgba(128,128,128,0.33)";
1217 ctx
.fillRect(this.layout_
.getPlotArea().x
, Math
.min(startY
, endY
),
1218 this.layout_
.getPlotArea().w
, Math
.abs(endY
- startY
));
1222 if (this.isUsingExcanvas_
) {
1223 this.currentZoomRectArgs_
= [direction
, startX
, endX
, startY
, endY
, 0, 0, 0];
1228 * Clear the zoom rectangle (and perform no zoom).
1231 Dygraph
.prototype.clearZoomRect_
= function() {
1232 this.currentZoomRectArgs_
= null;
1233 this.canvas_ctx_
.clearRect(0, 0, this.canvas_
.width
, this.canvas_
.height
);
1237 * Zoom to something containing [lowX, highX]. These are pixel coordinates in
1238 * the canvas. The exact zoom window may be slightly larger if there are no data
1239 * points near lowX or highX. Don't confuse this function with doZoomXDates,
1240 * which accepts dates that match the raw data. This function redraws the graph.
1242 * @param {Number} lowX The leftmost pixel value that should be visible.
1243 * @param {Number} highX The rightmost pixel value that should be visible.
1246 Dygraph
.prototype.doZoomX_
= function(lowX
, highX
) {
1247 this.currentZoomRectArgs_
= null;
1248 // Find the earliest and latest dates contained in this canvasx range.
1249 // Convert the call to date ranges of the raw data.
1250 var minDate
= this.toDataXCoord(lowX
);
1251 var maxDate
= this.toDataXCoord(highX
);
1252 this.doZoomXDates_(minDate
, maxDate
);
1256 * Transition function to use in animations. Returns values between 0.0
1257 * (totally old values) and 1.0 (totally new values) for each frame.
1260 Dygraph
.zoomAnimationFunction
= function(frame
, numFrames
) {
1262 return (1.0 - Math
.pow(k
, -frame
)) / (1.0 - Math
.pow(k
, -numFrames
));
1266 * Zoom to something containing [minDate, maxDate] values. Don't confuse this
1267 * method with doZoomX which accepts pixel coordinates. This function redraws
1270 * @param {Number} minDate The minimum date that should be visible.
1271 * @param {Number} maxDate The maximum date that should be visible.
1274 Dygraph
.prototype.doZoomXDates_
= function(minDate
, maxDate
) {
1275 // TODO(danvk): when yAxisRange is null (i.e. "fit to data", the animation
1276 // can produce strange effects. Rather than the y-axis transitioning slowly
1277 // between values, it can jerk around.)
1278 var old_window
= this.xAxisRange();
1279 var new_window
= [minDate
, maxDate
];
1280 this.zoomed_x_
= true;
1282 this.doAnimatedZoom(old_window
, new_window
, null, null, function() {
1283 if (that
.attr_("zoomCallback")) {
1284 that
.attr_("zoomCallback")(minDate
, maxDate
, that
.yAxisRanges());
1290 * Zoom to something containing [lowY, highY]. These are pixel coordinates in
1291 * the canvas. This function redraws the graph.
1293 * @param {Number} lowY The topmost pixel value that should be visible.
1294 * @param {Number} highY The lowest pixel value that should be visible.
1297 Dygraph
.prototype.doZoomY_
= function(lowY
, highY
) {
1298 this.currentZoomRectArgs_
= null;
1299 // Find the highest and lowest values in pixel range for each axis.
1300 // Note that lowY (in pixels) corresponds to the max Value (in data coords).
1301 // This is because pixels increase as you go down on the screen, whereas data
1302 // coordinates increase as you go up the screen.
1303 var oldValueRanges
= this.yAxisRanges();
1304 var newValueRanges
= [];
1305 for (var i
= 0; i
< this.axes_
.length
; i
++) {
1306 var hi
= this.toDataYCoord(lowY
, i
);
1307 var low
= this.toDataYCoord(highY
, i
);
1308 newValueRanges
.push([low
, hi
]);
1311 this.zoomed_y_
= true;
1313 this.doAnimatedZoom(null, null, oldValueRanges
, newValueRanges
, function() {
1314 if (that
.attr_("zoomCallback")) {
1315 var xRange
= that
.xAxisRange();
1316 that
.attr_("zoomCallback")(xRange
[0], xRange
[1], that
.yAxisRanges());
1322 * Reset the zoom to the original view coordinates. This is the same as
1323 * double-clicking on the graph.
1327 Dygraph
.prototype.doUnzoom_
= function() {
1328 var dirty
= false, dirtyX
= false, dirtyY
= false;
1329 if (this.dateWindow_
!== null) {
1334 for (var i
= 0; i
< this.axes_
.length
; i
++) {
1335 if (this.axes_
[i
].valueWindow
!== null) {
1341 // Clear any selection, since it's likely to be drawn in the wrong place.
1342 this.clearSelection();
1345 this.zoomed_x_
= false;
1346 this.zoomed_y_
= false;
1348 var minDate
= this.rawData_
[0][0];
1349 var maxDate
= this.rawData_
[this.rawData_
.length
- 1][0];
1351 // With only one frame, don't bother calculating extreme ranges.
1352 // TODO(danvk): merge this block w/ the code below
.
1353 if (!this.attr_("animatedZooms")) {
1354 this.dateWindow_
= null;
1355 for (i
= 0; i
< this.axes_
.length
; i
++) {
1356 if (this.axes_
[i
].valueWindow
!== null) {
1357 delete this.axes_
[i
].valueWindow
;
1361 if (this.attr_("zoomCallback")) {
1362 this.attr_("zoomCallback")(minDate
, maxDate
, this.yAxisRanges());
1367 var oldWindow
=null, newWindow
=null, oldValueRanges
=null, newValueRanges
=null;
1369 oldWindow
= this.xAxisRange();
1370 newWindow
= [minDate
, maxDate
];
1374 oldValueRanges
= this.yAxisRanges();
1375 // TODO(danvk): this is pretty inefficient
1376 var packed
= this.gatherDatasets_(this.rolledSeries_
, null);
1377 var extremes
= packed
[1];
1379 // this has the side-effect of modifying this.axes_.
1380 // this doesn't make much sense in this context, but it's convenient (we
1381 // need this.axes_[*].extremeValues) and not harmful since we'll be
1382 // calling drawGraph_ shortly, which clobbers these values.
1383 this.computeYAxisRanges_(extremes
);
1385 newValueRanges
= [];
1386 for (i
= 0; i
< this.axes_
.length
; i
++) {
1387 newValueRanges
.push(this.axes_
[i
].extremeRange
);
1392 this.doAnimatedZoom(oldWindow
, newWindow
, oldValueRanges
, newValueRanges
,
1394 that
.dateWindow_
= null;
1395 for (var i
= 0; i
< that
.axes_
.length
; i
++) {
1396 if (that
.axes_
[i
].valueWindow
!== null) {
1397 delete that
.axes_
[i
].valueWindow
;
1400 if (that
.attr_("zoomCallback")) {
1401 that
.attr_("zoomCallback")(minDate
, maxDate
, that
.yAxisRanges());
1408 * Combined animation logic for all zoom functions.
1409 * either the x parameters or y parameters may be null.
1412 Dygraph
.prototype.doAnimatedZoom
= function(oldXRange
, newXRange
, oldYRanges
, newYRanges
, callback
) {
1413 var steps
= this.attr_("animatedZooms") ? Dygraph
.ANIMATION_STEPS
: 1;
1416 var valueRanges
= [];
1419 if (oldXRange
!== null && newXRange
!== null) {
1420 for (step
= 1; step
<= steps
; step
++) {
1421 frac
= Dygraph
.zoomAnimationFunction(step
, steps
);
1422 windows
[step
-1] = [oldXRange
[0]*(1-frac
) + frac
*newXRange
[0],
1423 oldXRange
[1]*(1-frac
) + frac
*newXRange
[1]];
1427 if (oldYRanges
!== null && newYRanges
!== null) {
1428 for (step
= 1; step
<= steps
; step
++) {
1429 frac
= Dygraph
.zoomAnimationFunction(step
, steps
);
1431 for (var j
= 0; j
< this.axes_
.length
; j
++) {
1432 thisRange
.push([oldYRanges
[j
][0]*(1-frac
) + frac
*newYRanges
[j
][0],
1433 oldYRanges
[j
][1]*(1-frac
) + frac
*newYRanges
[j
][1]]);
1435 valueRanges
[step
-1] = thisRange
;
1440 Dygraph
.repeatAndCleanup(function(step
) {
1441 if (valueRanges
.length
) {
1442 for (var i
= 0; i
< that
.axes_
.length
; i
++) {
1443 var w
= valueRanges
[step
][i
];
1444 that
.axes_
[i
].valueWindow
= [w
[0], w
[1]];
1447 if (windows
.length
) {
1448 that
.dateWindow_
= windows
[step
];
1451 }, steps
, Dygraph
.ANIMATION_DURATION
/ steps
, callback
);
1455 * When the mouse moves in the canvas, display information about a nearby data
1456 * point and draw dots over those points in the data series. This function
1457 * takes care of cleanup of previously-drawn dots.
1458 * @param {Object} event The mousemove event from the browser.
1461 Dygraph
.prototype.mouseMove_
= function(event
) {
1462 // This prevents JS errors when mousing over the canvas before data loads.
1463 var points
= this.layout_
.points
;
1464 if (points
=== undefined
) return;
1466 var canvasx
= Dygraph
.pageX(event
) - Dygraph
.findPosX(this.mouseEventElement_
);
1471 // Loop through all the points and find the date nearest to our current
1473 var minDist
= 1e+100;
1475 for (i
= 0; i
< points
.length
; i
++) {
1476 var point
= points
[i
];
1477 if (point
=== null) continue;
1478 var dist
= Math
.abs(point
.canvasx
- canvasx
);
1479 if (dist
> minDist
) continue;
1483 if (idx
>= 0) lastx
= points
[idx
].xval
;
1485 // Extract the points we've selected
1486 this.selPoints_
= [];
1487 var l
= points
.length
;
1488 if (!this.attr_("stackedGraph")) {
1489 for (i
= 0; i
< l
; i
++) {
1490 if (points
[i
].xval
== lastx
) {
1491 this.selPoints_
.push(points
[i
]);
1495 // Need to 'unstack' points starting from the bottom
1496 var cumulative_sum
= 0;
1497 for (i
= l
- 1; i
>= 0; i
--) {
1498 if (points
[i
].xval
== lastx
) {
1499 var p
= {}; // Clone the point since we modify it
1500 for (var k
in points
[i
]) {
1501 p
[k
] = points
[i
][k
];
1503 p
.yval
-= cumulative_sum
;
1504 cumulative_sum
+= p
.yval
;
1505 this.selPoints_
.push(p
);
1508 this.selPoints_
.reverse();
1511 if (this.attr_("highlightCallback")) {
1512 var px
= this.lastx_
;
1513 if (px
!== null && lastx
!= px
) {
1514 // only fire if the selected point has changed.
1515 this.attr_("highlightCallback")(event
, lastx
, this.selPoints_
, this.idxToRow_(idx
));
1519 // Save last x position for callbacks.
1520 this.lastx_
= lastx
;
1522 this.updateSelection_();
1526 * Transforms layout_.points index into data row number.
1527 * @param int layout_.points index
1528 * @return int row number, or -1 if none could be found.
1531 Dygraph
.prototype.idxToRow_
= function(idx
) {
1532 if (idx
< 0) return -1;
1534 // make sure that you get the boundaryIds record which is also defined (see bug #236)
1535 var boundaryIdx
= -1;
1536 for (var i
= 0; i
< this.boundaryIds_
.length
; i
++) {
1537 if (this.boundaryIds_
[i
] !== undefined
) {
1542 if (boundaryIdx
< 0) return -1;
1543 for (var setIdx
= 0; setIdx
< this.layout_
.datasets
.length
; ++setIdx
) {
1544 var set
= this.layout_
.datasets
[setIdx
];
1545 if (idx
< set
.length
) {
1546 return this.boundaryIds_
[boundaryIdx
][0] + idx
;
1555 * Generates legend html dash for any stroke pattern. It will try to scale the
1556 * pattern to fit in 1em width. Or if small enough repeat the partern for 1em
1558 * @param strokePattern The pattern
1559 * @param color The color of the series.
1560 * @param oneEmWidth The width in pixels of 1em in the legend.
1562 Dygraph
.prototype.generateLegendDashHTML_
= function(strokePattern
, color
, oneEmWidth
) {
1564 var i
, j
, paddingLeft
, marginRight
;
1565 var strokePixelLength
= 0, segmentLoop
= 0;
1566 var normalizedPattern
= [];
1568 // IE 7,8 fail at these divs, so they get boring legend, have not tested 9.
1569 var isIE
= (/MSIE/.test(navigator
.userAgent
) && !window
.opera
);
1573 if (!strokePattern
|| strokePattern
.length
<= 1) {
1575 dash
= "<div style=\"display: inline-block; position: relative; " +
1576 "bottom: .5ex; padding-left: 1em; height: 1px; " +
1577 "border-bottom: 2px solid " + color
+ ";\"></div>";
1579 // Compute the length of the pixels including the first segment twice,
1580 // since we repeat it.
1581 for (i
= 0; i
<= strokePattern
.length
; i
++) {
1582 strokePixelLength
+= strokePattern
[i
%strokePattern
.length
];
1585 // See if we can loop the pattern by itself at least twice.
1586 loop
= Math
.floor(oneEmWidth
/(strokePixelLength
-strokePattern
[0]));
1588 // This pattern fits at least two times, no scaling just convert to em;
1589 for (i
= 0; i
< strokePattern
.length
; i
++) {
1590 normalizedPattern
[i
] = strokePattern
[i
]/oneEmWidth
;
1592 // Since we are repeating the pattern, we don't worry about repeating the
1593 // first segment in one draw.
1594 segmentLoop
= normalizedPattern
.length
;
1596 // If the pattern doesn't fit in the legend we scale it to fit.
1598 for (i
= 0; i
< strokePattern
.length
; i
++) {
1599 normalizedPattern
[i
] = strokePattern
[i
]/strokePixelLength
;
1601 // For the scaled patterns we do redraw the first segment.
1602 segmentLoop
= normalizedPattern
.length
+1;
1604 // Now make the pattern.
1605 for (j
= 0; j
< loop
; j
++) {
1606 for (i
= 0; i
< segmentLoop
; i
+=2) {
1607 // The padding is the drawn segment.
1608 paddingLeft
= normalizedPattern
[i
%normalizedPattern
.length
];
1609 if (i
< strokePattern
.length
) {
1610 // The margin is the space segment.
1611 marginRight
= normalizedPattern
[(i
+1)%normalizedPattern
.length
];
1613 // The repeated first segment has no right margin.
1616 dash
+= "<div style=\"display: inline-block; position: relative; " +
1617 "bottom: .5ex; margin-right: " + marginRight
+ "em; padding-left: " +
1618 paddingLeft
+ "em; height: 1px; border-bottom: 2px solid " + color
+
1628 * Generates HTML for the legend which is displayed when hovering over the
1629 * chart. If no selected points are specified, a default legend is returned
1630 * (this may just be the empty string).
1631 * @param { Number } [x] The x-value of the selected points.
1632 * @param { [Object] } [sel_points] List of selected points for the given
1633 * x-value. Should have properties like 'name', 'yval' and 'canvasy'.
1634 * @param { Number } [oneEmWidth] The pixel width for 1em in the legend.
1636 Dygraph
.prototype.generateLegendHTML_
= function(x
, sel_points
, oneEmWidth
) {
1637 // If no points are selected, we display a default legend. Traditionally,
1638 // this has been blank. But a better default would be a conventional legend,
1639 // which provides essential information for a non-interactive chart.
1640 var html
, sepLines
, i
, c
, dash
, strokePattern
;
1641 if (typeof(x
) === 'undefined') {
1642 if (this.attr_('legend') != 'always') return '';
1644 sepLines
= this.attr_('labelsSeparateLines');
1645 var labels
= this.attr_('labels');
1647 for (i
= 1; i
< labels
.length
; i
++) {
1648 if (!this.visibility()[i
- 1]) continue;
1649 c
= this.plotter_
.colors
[labels
[i
]];
1650 if (html
!== '') html
+= (sepLines
? '<br/>' : ' ');
1651 strokePattern
= this.attr_("strokePattern", labels
[i
]);
1652 dash
= this.generateLegendDashHTML_(strokePattern
, c
, oneEmWidth
);
1653 html
+= "<span style='font-weight: bold; color: " + c
+ ";'>" + dash
+
1654 " " + labels
[i
] + "</span>";
1659 var xOptView
= this.optionsViewForAxis_('x');
1660 var xvf
= xOptView('valueFormatter');
1661 html
= xvf(x
, xOptView
, this.attr_('labels')[0], this) + ":";
1664 var num_axes
= this.numAxes();
1665 for (i
= 0; i
< num_axes
; i
++) {
1666 yOptViews
[i
] = this.optionsViewForAxis_('y' + (i
? 1 + i
: ''));
1668 var showZeros
= this.attr_("labelsShowZeroValues");
1669 sepLines
= this.attr_("labelsSeparateLines");
1670 for (i
= 0; i
< this.selPoints_
.length
; i
++) {
1671 var pt
= this.selPoints_
[i
];
1672 if (pt
.yval
=== 0 && !showZeros
) continue;
1673 if (!Dygraph
.isOK(pt
.canvasy
)) continue;
1674 if (sepLines
) html
+= "<br/>";
1676 var yOptView
= yOptViews
[this.seriesToAxisMap_
[pt
.name
]];
1677 var fmtFunc
= yOptView('valueFormatter');
1678 c
= this.plotter_
.colors
[pt
.name
];
1679 var yval
= fmtFunc(pt
.yval
, yOptView
, pt
.name
, this);
1681 // TODO(danvk): use a template string here and make it an attribute.
1682 html
+= " <b><span style='color: " + c
+ ";'>" + pt
.name
+
1683 "</span></b>:" + yval
;
1690 * Displays information about the selected points in the legend. If there is no
1691 * selection, the legend will be cleared.
1692 * @param { Number } [x] The x-value of the selected points.
1693 * @param { [Object] } [sel_points] List of selected points for the given
1694 * x-value. Should have properties like 'name', 'yval' and 'canvasy'.
1696 Dygraph
.prototype.setLegendHTML_
= function(x
, sel_points
) {
1697 var labelsDiv
= this.attr_("labelsDiv");
1698 var sizeSpan
= document
.createElement('span');
1699 // Calculates the width of 1em in pixels for the legend.
1700 sizeSpan
.setAttribute('style', 'margin: 0; padding: 0 0 0 1em; border: 0;');
1701 labelsDiv
.appendChild(sizeSpan
);
1702 var oneEmWidth
=sizeSpan
.offsetWidth
;
1704 var html
= this.generateLegendHTML_(x
, sel_points
, oneEmWidth
);
1705 if (labelsDiv
!== null) {
1706 labelsDiv
.innerHTML
= html
;
1708 if (typeof(this.shown_legend_error_
) == 'undefined') {
1709 this.error('labelsDiv is set to something nonexistent; legend will not be shown.');
1710 this.shown_legend_error_
= true;
1716 * Draw dots over the selectied points in the data series. This function
1717 * takes care of cleanup of previously-drawn dots.
1720 Dygraph
.prototype.updateSelection_
= function() {
1721 // Clear the previously drawn vertical, if there is one
1723 var ctx
= this.canvas_ctx_
;
1724 if (this.previousVerticalX_
>= 0) {
1725 // Determine the maximum highlight circle size.
1726 var maxCircleSize
= 0;
1727 var labels
= this.attr_('labels');
1728 for (i
= 1; i
< labels
.length
; i
++) {
1729 var r
= this.attr_('highlightCircleSize', labels
[i
]);
1730 if (r
> maxCircleSize
) maxCircleSize
= r
;
1732 var px
= this.previousVerticalX_
;
1733 ctx
.clearRect(px
- maxCircleSize
- 1, 0,
1734 2 * maxCircleSize
+ 2, this.height_
);
1737 if (this.isUsingExcanvas_
&& this.currentZoomRectArgs_
) {
1738 Dygraph
.prototype.drawZoomRect_
.apply(this, this.currentZoomRectArgs_
);
1741 if (this.selPoints_
.length
> 0) {
1742 // Set the status message to indicate the selected point(s)
1743 if (this.attr_('showLabelsOnHighlight')) {
1744 this.setLegendHTML_(this.lastx_
, this.selPoints_
);
1747 // Draw colored circles over the center of each selected point
1748 var canvasx
= this.selPoints_
[0].canvasx
;
1750 for (i
= 0; i
< this.selPoints_
.length
; i
++) {
1751 var pt
= this.selPoints_
[i
];
1752 if (!Dygraph
.isOK(pt
.canvasy
)) continue;
1754 var circleSize
= this.attr_('highlightCircleSize', pt
.name
);
1756 ctx
.fillStyle
= this.plotter_
.colors
[pt
.name
];
1757 ctx
.arc(canvasx
, pt
.canvasy
, circleSize
, 0, 2 * Math
.PI
, false);
1762 this.previousVerticalX_
= canvasx
;
1767 * Manually set the selected points and display information about them in the
1768 * legend. The selection can be cleared using clearSelection() and queried
1769 * using getSelection().
1770 * @param { Integer } row number that should be highlighted (i.e. appear with
1771 * hover dots on the chart). Set to false to clear any selection.
1773 Dygraph
.prototype.setSelection
= function(row
) {
1774 // Extract the points we've selected
1775 this.selPoints_
= [];
1778 if (row
!== false) {
1779 row
= row
- this.boundaryIds_
[0][0];
1782 if (row
!== false && row
>= 0) {
1783 for (var setIdx
= 0; setIdx
< this.layout_
.datasets
.length
; ++setIdx
) {
1784 var set
= this.layout_
.datasets
[setIdx
];
1785 if (row
< set
.length
) {
1786 var point
= this.layout_
.points
[pos
+row
];
1788 if (this.attr_("stackedGraph")) {
1789 point
= this.layout_
.unstackPointAtIndex(pos
+row
);
1792 this.selPoints_
.push(point
);
1798 if (this.selPoints_
.length
) {
1799 this.lastx_
= this.selPoints_
[0].xval
;
1800 this.updateSelection_();
1802 this.clearSelection();
1808 * The mouse has left the canvas. Clear out whatever artifacts remain
1809 * @param {Object} event the mouseout event from the browser.
1812 Dygraph
.prototype.mouseOut_
= function(event
) {
1813 if (this.attr_("unhighlightCallback")) {
1814 this.attr_("unhighlightCallback")(event
);
1817 if (this.attr_("hideOverlayOnMouseOut")) {
1818 this.clearSelection();
1823 * Clears the current selection (i.e. points that were highlighted by moving
1824 * the mouse over the chart).
1826 Dygraph
.prototype.clearSelection
= function() {
1827 // Get rid of the overlay data
1828 this.canvas_ctx_
.clearRect(0, 0, this.width_
, this.height_
);
1829 this.setLegendHTML_();
1830 this.selPoints_
= [];
1835 * Returns the number of the currently selected row. To get data for this row,
1836 * you can use the getValue method.
1837 * @return { Integer } row number, or -1 if nothing is selected
1839 Dygraph
.prototype.getSelection
= function() {
1840 if (!this.selPoints_
|| this.selPoints_
.length
< 1) {
1844 for (var row
=0; row
<this.layout_
.points
.length
; row
++ ) {
1845 if (this.layout_
.points
[row
].x
== this.selPoints_
[0].x
) {
1846 return row
+ this.boundaryIds_
[0][0];
1853 * Fires when there's data available to be graphed.
1854 * @param {String} data Raw CSV data to be plotted
1857 Dygraph
.prototype.loadedEvent_
= function(data
) {
1858 this.rawData_
= this.parseCSV_(data
);
1863 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
1866 Dygraph
.prototype.addXTicks_
= function() {
1867 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
1869 if (this.dateWindow_
) {
1870 range
= [this.dateWindow_
[0], this.dateWindow_
[1]];
1872 range
= this.fullXRange_();
1875 var xAxisOptionsView
= this.optionsViewForAxis_('x');
1876 var xTicks
= xAxisOptionsView('ticker')(
1879 this.width_
, // TODO(danvk): should be area.width
1882 // var msg = 'ticker(' + range[0] + ', ' + range[1] + ', ' + this.width_ + ', ' + this.attr_('pixelsPerXLabel') + ') -> ' + JSON.stringify(xTicks);
1883 // console.log(msg);
1884 this.layout_
.setXTicks(xTicks
);
1889 * Computes the range of the data series (including confidence intervals).
1890 * @param { [Array] } series either [ [x1, y1], [x2, y2], ... ] or
1891 * [ [x1, [y1, dev_low, dev_high]], [x2, [y2, dev_low, dev_high]], ...
1892 * @return [low, high]
1894 Dygraph
.prototype.extremeValues_
= function(series
) {
1895 var minY
= null, maxY
= null, j
, y
;
1897 var bars
= this.attr_("errorBars") || this.attr_("customBars");
1899 // With custom bars, maxY is the max of the high values.
1900 for (j
= 0; j
< series
.length
; j
++) {
1901 y
= series
[j
][1][0];
1903 var low
= y
- series
[j
][1][1];
1904 var high
= y
+ series
[j
][1][2];
1905 if (low
> y
) low
= y
; // this can happen with custom bars,
1906 if (high
< y
) high
= y
; // e.g. in tests/custom-bars
.html
1907 if (maxY
=== null || high
> maxY
) {
1910 if (minY
=== null || low
< minY
) {
1915 for (j
= 0; j
< series
.length
; j
++) {
1917 if (y
=== null || isNaN(y
)) continue;
1918 if (maxY
=== null || y
> maxY
) {
1921 if (minY
=== null || y
< minY
) {
1927 return [minY
, maxY
];
1932 * This function is called once when the chart's data is changed or the options
1933 * dictionary is updated. It is _not_ called when the user pans or zooms. The
1934 * idea is that values derived from the chart's data can be computed here,
1935 * rather than every time the chart is drawn. This includes things like the
1936 * number of axes, rolling averages, etc.
1938 Dygraph
.prototype.predraw_
= function() {
1939 var start
= new Date();
1941 // TODO(danvk): move more computations out of drawGraph_ and into here.
1942 this.computeYAxes_();
1944 // Create a new plotter.
1945 if (this.plotter_
) this.plotter_
.clear();
1946 this.plotter_
= new DygraphCanvasRenderer(this,
1951 // The roller sits in the bottom left corner of the chart. We don't know where
1952 // this will be until the options are available, so it's positioned here.
1953 this.createRollInterface_();
1955 // Same thing applies for the labelsDiv. It's right edge should be flush with
1956 // the right edge of the charting area (which may not be the same as the right
1957 // edge of the div, if we have two y-axes.
1958 this.positionLabelsDiv_();
1960 if (this.rangeSelector_
) {
1961 this.rangeSelector_
.renderStaticLayer();
1964 // Convert the raw data (a 2D array) into the internal format and compute
1965 // rolling averages.
1966 this.rolledSeries_
= [null]; // x-axis is the first series and it's special
1967 for (var i
= 1; i
< this.numColumns(); i
++) {
1968 var connectSeparatedPoints
= this.attr_('connectSeparatedPoints', i
);
1969 var logScale
= this.attr_('logscale', i
);
1970 var series
= this.extractSeries_(this.rawData_
, i
, logScale
, connectSeparatedPoints
);
1971 series
= this.rollingAverage(series
, this.rollPeriod_
);
1972 this.rolledSeries_
.push(series
);
1975 // If the data or options have changed, then we'd better redraw.
1978 // This is used to determine whether to do various animations.
1979 var end
= new Date();
1980 this.drawingTimeMs_
= (end
- start
);
1984 * Loop over all fields and create datasets, calculating extreme y-values for
1985 * each series and extreme x-indices as we go.
1987 * dateWindow is passed in as an explicit parameter so that we can compute
1988 * extreme values "speculatively", i.e. without actually setting state on the
1991 * TODO(danvk): make this more of a true function
1992 * @return [ datasets, seriesExtremes, boundaryIds ]
1995 Dygraph
.prototype.gatherDatasets_
= function(rolledSeries
, dateWindow
) {
1996 var boundaryIds
= [];
1997 var cumulative_y
= []; // For stacked series.
1999 var extremes
= {}; // series name -> [low, high]
2002 // Loop over the fields (series). Go from the last to the first,
2003 // because if they're stacked that's how we accumulate the values.
2004 var num_series
= rolledSeries
.length
- 1;
2005 for (i
= num_series
; i
>= 1; i
--) {
2006 if (!this.visibility()[i
- 1]) continue;
2008 // TODO(danvk): is this copy really necessary?
2010 for (j
= 0; j
< rolledSeries
[i
].length
; j
++) {
2011 series
.push(rolledSeries
[i
][j
]);
2014 // Prune down to the desired range, if necessary (for zooming)
2015 // Because there can be lines going to points outside of the visible area,
2016 // we actually prune to visible points, plus one on either side.
2017 var bars
= this.attr_("errorBars") || this.attr_("customBars");
2019 var low
= dateWindow
[0];
2020 var high
= dateWindow
[1];
2022 // TODO(danvk): do binary search instead of linear search.
2023 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
2024 var firstIdx
= null, lastIdx
= null;
2025 for (k
= 0; k
< series
.length
; k
++) {
2026 if (series
[k
][0] >= low
&& firstIdx
=== null) {
2029 if (series
[k
][0] <= high
) {
2033 if (firstIdx
=== null) firstIdx
= 0;
2034 if (firstIdx
> 0) firstIdx
--;
2035 if (lastIdx
=== null) lastIdx
= series
.length
- 1;
2036 if (lastIdx
< series
.length
- 1) lastIdx
++;
2037 boundaryIds
[i
-1] = [firstIdx
, lastIdx
];
2038 for (k
= firstIdx
; k
<= lastIdx
; k
++) {
2039 pruned
.push(series
[k
]);
2043 boundaryIds
[i
-1] = [0, series
.length
-1];
2046 var seriesExtremes
= this.extremeValues_(series
);
2049 for (j
=0; j
<series
.length
; j
++) {
2050 series
[j
] = [series
[j
][0],
2055 } else if (this.attr_("stackedGraph")) {
2056 var l
= series
.length
;
2058 for (j
= 0; j
< l
; j
++) {
2059 // If one data set has a NaN, let all subsequent stacked
2060 // sets inherit the NaN -- only start at 0 for the first set.
2061 var x
= series
[j
][0];
2062 if (cumulative_y
[x
] === undefined
) {
2063 cumulative_y
[x
] = 0;
2066 actual_y
= series
[j
][1];
2067 cumulative_y
[x
] += actual_y
;
2069 series
[j
] = [x
, cumulative_y
[x
]];
2071 if (cumulative_y
[x
] > seriesExtremes
[1]) {
2072 seriesExtremes
[1] = cumulative_y
[x
];
2074 if (cumulative_y
[x
] < seriesExtremes
[0]) {
2075 seriesExtremes
[0] = cumulative_y
[x
];
2080 var seriesName
= this.attr_("labels")[i
];
2081 extremes
[seriesName
] = seriesExtremes
;
2082 datasets
[i
] = series
;
2085 return [ datasets
, extremes
, boundaryIds
];
2089 * Update the graph with new data. This method is called when the viewing area
2090 * has changed. If the underlying data or options have changed, predraw_ will
2091 * be called before drawGraph_ is called.
2093 * clearSelection, when undefined or true, causes this.clearSelection to be
2094 * called at the end of the draw operation. This should rarely be defined,
2095 * and never true (that is it should be undefined most of the time, and
2100 Dygraph
.prototype.drawGraph_
= function(clearSelection
) {
2101 var start
= new Date();
2103 if (typeof(clearSelection
) === 'undefined') {
2104 clearSelection
= true;
2107 // This is used to set the second parameter to drawCallback, below.
2108 var is_initial_draw
= this.is_initial_draw_
;
2109 this.is_initial_draw_
= false;
2111 this.layout_
.removeAllDatasets();
2113 this.attrs_
.pointSize
= 0.5 * this.attr_('highlightCircleSize');
2115 var packed
= this.gatherDatasets_(this.rolledSeries_
, this.dateWindow_
);
2116 var datasets
= packed
[0];
2117 var extremes
= packed
[1];
2118 this.boundaryIds_
= packed
[2];
2120 this.setIndexByName_
= {};
2121 var labels
= this.attr_("labels");
2122 if (labels
.length
> 0) {
2123 this.setIndexByName_
[labels
[0]] = 0;
2125 for (var i
= 1; i
< datasets
.length
; i
++) {
2126 this.setIndexByName_
[labels
[i
]] = i
;
2127 if (!this.visibility()[i
- 1]) continue;
2128 this.layout_
.addDataset(labels
[i
], datasets
[i
]);
2131 this.computeYAxisRanges_(extremes
);
2132 this.layout_
.setYAxes(this.axes_
);
2136 // Save the X axis zoomed status as the updateOptions call will tend to set it erroneously
2137 var tmp_zoomed_x
= this.zoomed_x_
;
2138 // Tell PlotKit to use this new data and render itself
2139 this.layout_
.setDateWindow(this.dateWindow_
);
2140 this.zoomed_x_
= tmp_zoomed_x
;
2141 this.layout_
.evaluateWithError();
2142 this.renderGraph_(is_initial_draw
, false);
2144 if (this.attr_("timingName")) {
2145 var end
= new Date();
2147 console
.log(this.attr_("timingName") + " - drawGraph: " + (end
- start
) + "ms");
2152 Dygraph
.prototype.renderGraph_
= function(is_initial_draw
, clearSelection
) {
2153 this.plotter_
.clear();
2154 this.plotter_
.render();
2155 this.canvas_
.getContext('2d').clearRect(0, 0, this.canvas_
.width
,
2156 this.canvas_
.height
);
2158 // Generate a static legend before any particular point is selected.
2159 this.setLegendHTML_();
2161 if (!is_initial_draw
) {
2162 if (clearSelection
) {
2163 if (typeof(this.selPoints_
) !== 'undefined' && this.selPoints_
.length
) {
2164 // We should select the point nearest the page x/y here
, but it
's easier
2165 // to just clear the selection. This prevents erroneous hover dots from
2167 this.clearSelection();
2169 this.clearSelection();
2174 if (this.rangeSelector_) {
2175 this.rangeSelector_.renderInteractiveLayer();
2178 if (this.attr_("drawCallback") !== null) {
2179 this.attr_("drawCallback")(this, is_initial_draw);
2185 * Determine properties of the y-axes which are independent of the data
2186 * currently being displayed. This includes things like the number of axes and
2187 * the style of the axes. It does not include the range of each axis and its
2189 * This fills in this.axes_ and this.seriesToAxisMap_.
2190 * axes_ = [ { options } ]
2191 * seriesToAxisMap_ = { seriesName: 0, seriesName2: 1, ... }
2192 * indices are into the axes_ array.
2194 Dygraph.prototype.computeYAxes_ = function() {
2195 // Preserve valueWindow settings if they exist, and if the user hasn't
2196 // specified a new valueRange.
2197 var i
, valueWindows
, seriesName
, axis
, index
, opts
, v
;
2198 if (this.axes_
!== undefined
&& this.user_attrs_
.hasOwnProperty("valueRange") === false) {
2200 for (index
= 0; index
< this.axes_
.length
; index
++) {
2201 valueWindows
.push(this.axes_
[index
].valueWindow
);
2205 this.axes_
= [{ yAxisId
: 0, g
: this }]; // always have at least one y-axis.
2206 this.seriesToAxisMap_
= {};
2208 // Get a list of series names.
2209 var labels
= this.attr_("labels");
2211 for (i
= 1; i
< labels
.length
; i
++) series
[labels
[i
]] = (i
- 1);
2213 // all options which could be applied per-axis:
2221 'axisLabelFontSize',
2226 // Copy global axis options over to the first axis.
2227 for (i
= 0; i
< axisOptions
.length
; i
++) {
2228 var k
= axisOptions
[i
];
2230 if (v
) this.axes_
[0][k
] = v
;
2233 // Go through once and add all the axes.
2234 for (seriesName
in series
) {
2235 if (!series
.hasOwnProperty(seriesName
)) continue;
2236 axis
= this.attr_("axis", seriesName
);
2237 if (axis
=== null) {
2238 this.seriesToAxisMap_
[seriesName
] = 0;
2241 if (typeof(axis
) == 'object') {
2242 // Add a new axis, making a copy of its per-axis options.
2244 Dygraph
.update(opts
, this.axes_
[0]);
2245 Dygraph
.update(opts
, { valueRange
: null }); // shouldn't inherit this.
2246 var yAxisId
= this.axes_
.length
;
2247 opts
.yAxisId
= yAxisId
;
2249 Dygraph
.update(opts
, axis
);
2250 this.axes_
.push(opts
);
2251 this.seriesToAxisMap_
[seriesName
] = yAxisId
;
2255 // Go through one more time and assign series to an axis defined by another
2256 // series, e.g. { 'Y1: { axis: {} }, 'Y2': { axis: 'Y1' } }
2257 for (seriesName
in series
) {
2258 if (!series
.hasOwnProperty(seriesName
)) continue;
2259 axis
= this.attr_("axis", seriesName
);
2260 if (typeof(axis
) == 'string') {
2261 if (!this.seriesToAxisMap_
.hasOwnProperty(axis
)) {
2262 this.error("Series " + seriesName
+ " wants to share a y-axis with " +
2263 "series " + axis
+ ", which does not define its own axis.");
2266 var idx
= this.seriesToAxisMap_
[axis
];
2267 this.seriesToAxisMap_
[seriesName
] = idx
;
2271 if (valueWindows
!== undefined
) {
2272 // Restore valueWindow settings.
2273 for (index
= 0; index
< valueWindows
.length
; index
++) {
2274 this.axes_
[index
].valueWindow
= valueWindows
[index
];
2279 for (axis
= 0; axis
< this.axes_
.length
; axis
++) {
2281 opts
= this.optionsViewForAxis_('y' + (axis
? '2' : ''));
2282 v
= opts("valueRange");
2283 if (v
) this.axes_
[axis
].valueRange
= v
;
2284 } else { // To keep old behavior
2285 var axes
= this.user_attrs_
.axes
;
2286 if (axes
&& axes
.y2
) {
2287 v
= axes
.y2
.valueRange
;
2288 if (v
) this.axes_
[axis
].valueRange
= v
;
2296 * Returns the number of y-axes on the chart.
2297 * @return {Number} the number of axes.
2299 Dygraph
.prototype.numAxes
= function() {
2301 for (var series
in this.seriesToAxisMap_
) {
2302 if (!this.seriesToAxisMap_
.hasOwnProperty(series
)) continue;
2303 var idx
= this.seriesToAxisMap_
[series
];
2304 if (idx
> last_axis
) last_axis
= idx
;
2306 return 1 + last_axis
;
2311 * Returns axis properties for the given series.
2312 * @param { String } setName The name of the series for which to get axis
2313 * properties, e.g. 'Y1'.
2314 * @return { Object } The axis properties.
2316 Dygraph
.prototype.axisPropertiesForSeries
= function(series
) {
2317 // TODO(danvk): handle errors.
2318 return this.axes_
[this.seriesToAxisMap_
[series
]];
2323 * Determine the value range and tick marks for each axis.
2324 * @param {Object} extremes A mapping from seriesName -> [low, high]
2325 * This fills in the valueRange and ticks fields in each entry of this.axes_.
2327 Dygraph
.prototype.computeYAxisRanges_
= function(extremes
) {
2328 // Build a map from axis number -> [list of series names]
2329 var seriesForAxis
= [], series
;
2330 for (series
in this.seriesToAxisMap_
) {
2331 if (!this.seriesToAxisMap_
.hasOwnProperty(series
)) continue;
2332 var idx
= this.seriesToAxisMap_
[series
];
2333 while (seriesForAxis
.length
<= idx
) seriesForAxis
.push([]);
2334 seriesForAxis
[idx
].push(series
);
2337 // Compute extreme values, a span and tick marks for each axis.
2338 for (var i
= 0; i
< this.axes_
.length
; i
++) {
2339 var axis
= this.axes_
[i
];
2341 if (!seriesForAxis
[i
]) {
2342 // If no series are defined or visible then use a reasonable default
2343 axis
.extremeRange
= [0, 1];
2345 // Calculate the extremes of extremes.
2346 series
= seriesForAxis
[i
];
2347 var minY
= Infinity
; // extremes[series[0]][0];
2348 var maxY
= -Infinity
; // extremes[series[0]][1];
2349 var extremeMinY
, extremeMaxY
;
2351 for (var j
= 0; j
< series
.length
; j
++) {
2352 // this skips invisible series
2353 if (!extremes
.hasOwnProperty(series
[j
])) continue;
2355 // Only use valid extremes to stop null data series' from corrupting the scale.
2356 extremeMinY
= extremes
[series
[j
]][0];
2357 if (extremeMinY
!== null) {
2358 minY
= Math
.min(extremeMinY
, minY
);
2360 extremeMaxY
= extremes
[series
[j
]][1];
2361 if (extremeMaxY
!== null) {
2362 maxY
= Math
.max(extremeMaxY
, maxY
);
2365 if (axis
.includeZero
&& minY
> 0) minY
= 0;
2367 // Ensure we have a valid scale, otherwise default to [0, 1] for safety.
2368 if (minY
== Infinity
) minY
= 0;
2369 if (maxY
== -Infinity
) maxY
= 1;
2371 // Add some padding and round up to an integer to be human-friendly.
2372 var span
= maxY
- minY
;
2373 // special case: if we have no sense of scale, use +/-10% of the sole value
.
2374 if (span
=== 0) { span
= maxY
; }
2376 var maxAxisY
, minAxisY
;
2377 if (axis
.logscale
) {
2378 maxAxisY
= maxY
+ 0.1 * span
;
2381 maxAxisY
= maxY
+ 0.1 * span
;
2382 minAxisY
= minY
- 0.1 * span
;
2384 // Try to include zero and make it minAxisY (or maxAxisY) if it makes sense.
2385 if (!this.attr_("avoidMinZero")) {
2386 if (minAxisY
< 0 && minY
>= 0) minAxisY
= 0;
2387 if (maxAxisY
> 0 && maxY
<= 0) maxAxisY
= 0;
2390 if (this.attr_("includeZero")) {
2391 if (maxY
< 0) maxAxisY
= 0;
2392 if (minY
> 0) minAxisY
= 0;
2395 axis
.extremeRange
= [minAxisY
, maxAxisY
];
2397 if (axis
.valueWindow
) {
2398 // This is only set if the user has zoomed on the y-axis. It is never set
2399 // by a user. It takes precedence over axis.valueRange because, if you set
2400 // valueRange, you'd still expect to be able to pan.
2401 axis
.computedValueRange
= [axis
.valueWindow
[0], axis
.valueWindow
[1]];
2402 } else if (axis
.valueRange
) {
2403 // This is a user-set value range for this axis.
2404 axis
.computedValueRange
= [axis
.valueRange
[0], axis
.valueRange
[1]];
2406 axis
.computedValueRange
= axis
.extremeRange
;
2409 // Add ticks. By default, all axes inherit the tick positions of the
2410 // primary axis. However, if an axis is specifically marked as having
2411 // independent ticks, then that is permissible as well.
2412 var opts
= this.optionsViewForAxis_('y' + (i
? '2' : ''));
2413 var ticker
= opts('ticker');
2414 if (i
=== 0 || axis
.independentTicks
) {
2415 axis
.ticks
= ticker(axis
.computedValueRange
[0],
2416 axis
.computedValueRange
[1],
2417 this.height_
, // TODO(danvk): should be area.height
2421 var p_axis
= this.axes_
[0];
2422 var p_ticks
= p_axis
.ticks
;
2423 var p_scale
= p_axis
.computedValueRange
[1] - p_axis
.computedValueRange
[0];
2424 var scale
= axis
.computedValueRange
[1] - axis
.computedValueRange
[0];
2425 var tick_values
= [];
2426 for (var k
= 0; k
< p_ticks
.length
; k
++) {
2427 var y_frac
= (p_ticks
[k
].v
- p_axis
.computedValueRange
[0]) / p_scale
;
2428 var y_val
= axis
.computedValueRange
[0] + y_frac
* scale
;
2429 tick_values
.push(y_val
);
2432 axis
.ticks
= ticker(axis
.computedValueRange
[0],
2433 axis
.computedValueRange
[1],
2434 this.height_
, // TODO(danvk): should be area.height
2443 * Extracts one series from the raw data (a 2D array) into an array of (date,
2446 * This is where undesirable points (i.e. negative values on log scales and
2447 * missing values through which we wish to connect lines) are dropped.
2451 Dygraph
.prototype.extractSeries_
= function(rawData
, i
, logScale
, connectSeparatedPoints
) {
2453 for (var j
= 0; j
< rawData
.length
; j
++) {
2454 var x
= rawData
[j
][0];
2455 var point
= rawData
[j
][i
];
2457 // On the log scale, points less than zero do not exist.
2458 // This will create a gap in the chart. Note that this ignores
2459 // connectSeparatedPoints.
2463 series
.push([x
, point
]);
2465 if (point
!== null || !connectSeparatedPoints
) {
2466 series
.push([x
, point
]);
2475 * Calculates the rolling average of a data set.
2476 * If originalData is [label, val], rolls the average of those.
2477 * If originalData is [label, [, it's interpreted as [value, stddev]
2478 * and the roll is returned in the same form, with appropriately reduced
2479 * stddev for each value.
2480 * Note that this is where fractional input (i.e. '5/10') is converted into
2482 * @param {Array} originalData The data in the appropriate format (see above)
2483 * @param {Number} rollPeriod The number of points over which to average the
2486 Dygraph
.prototype.rollingAverage
= function(originalData
, rollPeriod
) {
2487 if (originalData
.length
< 2)
2488 return originalData
;
2489 rollPeriod
= Math
.min(rollPeriod
, originalData
.length
);
2490 var rollingData
= [];
2491 var sigma
= this.attr_("sigma");
2493 var low
, high
, i
, j
, y
, sum
, num_ok
, stddev
;
2494 if (this.fractions_
) {
2496 var den
= 0; // numerator/denominator
2498 for (i
= 0; i
< originalData
.length
; i
++) {
2499 num
+= originalData
[i
][1][0];
2500 den
+= originalData
[i
][1][1];
2501 if (i
- rollPeriod
>= 0) {
2502 num
-= originalData
[i
- rollPeriod
][1][0];
2503 den
-= originalData
[i
- rollPeriod
][1][1];
2506 var date
= originalData
[i
][0];
2507 var value
= den
? num
/ den
: 0.0;
2508 if (this.attr_("errorBars")) {
2509 if (this.attr_("wilsonInterval")) {
2510 // For more details on this confidence interval, see:
2511 // http://en.wikipedia.org/wiki
/Binomial_confidence_interval
2513 var p
= value
< 0 ? 0 : value
, n
= den
;
2514 var pm
= sigma
* Math
.sqrt(p
*(1-p
)/n + sigma*sigma/(4*n
*n
));
2515 var denom
= 1 + sigma
* sigma
/ den
;
2516 low
= (p
+ sigma
* sigma
/ (2 * den) - pm) / denom
;
2517 high
= (p
+ sigma
* sigma
/ (2 * den) + pm) / denom
;
2518 rollingData
[i
] = [date
,
2519 [p
* mult
, (p
- low
) * mult
, (high
- p
) * mult
]];
2521 rollingData
[i
] = [date
, [0, 0, 0]];
2524 stddev
= den
? sigma
* Math
.sqrt(value
* (1 - value
) / den
) : 1.0;
2525 rollingData
[i
] = [date
, [mult
* value
, mult
* stddev
, mult
* stddev
]];
2528 rollingData
[i
] = [date
, mult
* value
];
2531 } else if (this.attr_("customBars")) {
2536 for (i
= 0; i
< originalData
.length
; i
++) {
2537 var data
= originalData
[i
][1];
2539 rollingData
[i
] = [originalData
[i
][0], [y
, y
- data
[0], data
[2] - y
]];
2541 if (y
!== null && !isNaN(y
)) {
2547 if (i
- rollPeriod
>= 0) {
2548 var prev
= originalData
[i
- rollPeriod
];
2549 if (prev
[1][1] !== null && !isNaN(prev
[1][1])) {
2557 rollingData
[i
] = [originalData
[i
][0], [ 1.0 * mid
/ count
,
2558 1.0 * (mid
- low
) / count
,
2559 1.0 * (high
- mid
) / count
]];
2561 rollingData
[i
] = [originalData
[i
][0], [null, null, null]];
2565 // Calculate the rolling average for the first rollPeriod - 1 points where
2566 // there is not enough data to roll over the full number of points
2567 if (!this.attr_("errorBars")){
2568 if (rollPeriod
== 1) {
2569 return originalData
;
2572 for (i
= 0; i
< originalData
.length
; i
++) {
2575 for (j
= Math
.max(0, i
- rollPeriod
+ 1); j
< i
+ 1; j
++) {
2576 y
= originalData
[j
][1];
2577 if (y
=== null || isNaN(y
)) continue;
2579 sum
+= originalData
[j
][1];
2582 rollingData
[i
] = [originalData
[i
][0], sum
/ num_ok
];
2584 rollingData
[i
] = [originalData
[i
][0], null];
2589 for (i
= 0; i
< originalData
.length
; i
++) {
2593 for (j
= Math
.max(0, i
- rollPeriod
+ 1); j
< i
+ 1; j
++) {
2594 y
= originalData
[j
][1][0];
2595 if (y
=== null || isNaN(y
)) continue;
2597 sum
+= originalData
[j
][1][0];
2598 variance
+= Math
.pow(originalData
[j
][1][1], 2);
2601 stddev
= Math
.sqrt(variance
) / num_ok
;
2602 rollingData
[i
] = [originalData
[i
][0],
2603 [sum
/ num_ok
, sigma
* stddev
, sigma
* stddev
]];
2605 rollingData
[i
] = [originalData
[i
][0], [null, null, null]];
2615 * Detects the type of the str (date or numeric) and sets the various
2616 * formatting attributes in this.attrs_ based on this type.
2617 * @param {String} str An x value.
2620 Dygraph
.prototype.detectTypeFromString_
= function(str
) {
2622 var dashPos
= str
.indexOf('-'); // could be 2006-01-01 _or_ 1.0e-2
2623 if ((dashPos
> 0 && (str
[dashPos
-1] != 'e' && str
[dashPos
-1] != 'E')) ||
2624 str
.indexOf('/') >= 0 ||
2625 isNaN(parseFloat(str
))) {
2627 } else if (str
.length
== 8 && str
> '19700101' && str
< '20371231') {
2628 // TODO(danvk): remove support for this format.
2633 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
2634 this.attrs_
.axes
.x
.valueFormatter
= Dygraph
.dateString_
;
2635 this.attrs_
.axes
.x
.ticker
= Dygraph
.dateTicker
;
2636 this.attrs_
.axes
.x
.axisLabelFormatter
= Dygraph
.dateAxisFormatter
;
2638 /** @private (shut up, jsdoc!) */
2639 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
2640 // TODO(danvk): use Dygraph.numberValueFormatter here?
2641 /** @private (shut up, jsdoc!) */
2642 this.attrs_
.axes
.x
.valueFormatter
= function(x
) { return x
; };
2643 this.attrs_
.axes
.x
.ticker
= Dygraph
.numericTicks
;
2644 this.attrs_
.axes
.x
.axisLabelFormatter
= this.attrs_
.axes
.x
.valueFormatter
;
2649 * Parses the value as a floating point number. This is like the parseFloat()
2650 * built-in, but with a few differences:
2651 * - the empty string is parsed as null, rather than NaN.
2652 * - if the string cannot be parsed at all, an error is logged.
2653 * If the string can't be parsed, this method returns null.
2654 * @param {String} x The string to be parsed
2655 * @param {Number} opt_line_no The line number from which the string comes.
2656 * @param {String} opt_line The text of the line from which the string comes.
2660 // Parse the x as a float or return null if it's not a number.
2661 Dygraph
.prototype.parseFloat_
= function(x
, opt_line_no
, opt_line
) {
2662 var val
= parseFloat(x
);
2663 if (!isNaN(val
)) return val
;
2665 // Try to figure out what happeend.
2666 // If the value is the empty string, parse it as null.
2667 if (/^ *$/.test(x
)) return null;
2669 // If it was actually "NaN", return it as NaN.
2670 if (/^ *nan *$/i.test(x
)) return NaN
;
2672 // Looks like a parsing error.
2673 var msg
= "Unable to parse '" + x
+ "' as a number";
2674 if (opt_line
!== null && opt_line_no
!== null) {
2675 msg
+= " on line " + (1+opt_line_no
) + " ('" + opt_line
+ "') of CSV.";
2684 * Parses a string in a special csv format. We expect a csv file where each
2685 * line is a date point, and the first field in each line is the date string.
2686 * We also expect that all remaining fields represent series.
2687 * if the errorBars attribute is set, then interpret the fields as:
2688 * date, series1, stddev1, series2, stddev2, ...
2689 * @param {[Object]} data See above.
2691 * @return [Object] An array with one entry for each row. These entries
2692 * are an array of cells in that row. The first entry is the parsed x-value for
2693 * the row. The second, third, etc. are the y-values. These can take on one of
2694 * three forms, depending on the CSV and constructor parameters:
2696 * 2. [ value, stddev ]
2697 * 3. [ low value, center value, high value ]
2699 Dygraph
.prototype.parseCSV_
= function(data
) {
2701 var lines
= data
.split("\n");
2704 // Use the default delimiter or fall back to a tab if that makes sense.
2705 var delim
= this.attr_('delimiter');
2706 if (lines
[0].indexOf(delim
) == -1 && lines
[0].indexOf('\t') >= 0) {
2711 if (!('labels' in this.user_attrs_
)) {
2712 // User hasn't explicitly set labels, so they're (presumably) in the CSV.
2714 this.attrs_
.labels
= lines
[0].split(delim
); // NOTE: _not_ user_attrs_.
2719 var defaultParserSet
= false; // attempt to auto-detect x value type
2720 var expectedCols
= this.attr_("labels").length
;
2721 var outOfOrder
= false;
2722 for (var i
= start
; i
< lines
.length
; i
++) {
2723 var line
= lines
[i
];
2725 if (line
.length
=== 0) continue; // skip blank lines
2726 if (line
[0] == '#') continue; // skip comment lines
2727 var inFields
= line
.split(delim
);
2728 if (inFields
.length
< 2) continue;
2731 if (!defaultParserSet
) {
2732 this.detectTypeFromString_(inFields
[0]);
2733 xParser
= this.attr_("xValueParser");
2734 defaultParserSet
= true;
2736 fields
[0] = xParser(inFields
[0], this);
2738 // If fractions are expected, parse the numbers as "A/B
"
2739 if (this.fractions_) {
2740 for (j = 1; j < inFields.length; j++) {
2741 // TODO(danvk): figure out an appropriate way to flag parse errors.
2742 vals = inFields[j].split("/");
2743 if (vals.length != 2) {
2744 this.error('Expected fractional "num
/den
" values in CSV data ' +
2745 "but found a value
'" + inFields[j] + "' on line
" +
2746 (1 + i) + " ('" + line + "') which is not of
this form
.");
2749 fields[j] = [this.parseFloat_(vals[0], i, line),
2750 this.parseFloat_(vals[1], i, line)];
2753 } else if (this.attr_("errorBars
")) {
2754 // If there are error bars, values are (value, stddev) pairs
2755 if (inFields.length % 2 != 1) {
2756 this.error('Expected alternating (value, stdev.) pairs in CSV data ' +
2757 'but line ' + (1 + i) + ' has an odd number of values (' +
2758 (inFields.length - 1) + "): '" + line + "'");
2760 for (j = 1; j < inFields.length; j += 2) {
2761 fields[(j + 1) / 2] = [this.parseFloat_(inFields[j], i, line),
2762 this.parseFloat_(inFields[j + 1], i, line)];
2764 } else if (this.attr_("customBars
")) {
2765 // Bars are a low;center;high tuple
2766 for (j = 1; j < inFields.length; j++) {
2767 var val = inFields[j];
2768 if (/^ *$/.test(val)) {
2769 fields[j] = [null, null, null];
2771 vals = val.split(";");
2772 if (vals.length == 3) {
2773 fields[j] = [ this.parseFloat_(vals[0], i, line),
2774 this.parseFloat_(vals[1], i, line),
2775 this.parseFloat_(vals[2], i, line) ];
2777 this.warn('When using customBars, values must be either blank ' +
2778 'or "low
;center
;high
" tuples (got "' + val +
2779 '" on line ' + (1+i));
2784 // Values are just numbers
2785 for (j = 1; j < inFields.length; j++) {
2786 fields[j] = this.parseFloat_(inFields[j], i, line);
2789 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
2793 if (fields.length != expectedCols) {
2794 this.error("Number of columns
in line
" + i + " (" + fields.length +
2795 ") does not agree
with number of
labels (" + expectedCols +
2799 // If the user specified the 'labels' option and none of the cells of the
2800 // first row parsed correctly, then they probably double-specified the
2801 // labels. We go with the values set in the option, discard this row and
2802 // log a warning to the JS console.
2803 if (i === 0 && this.attr_('labels')) {
2804 var all_null = true;
2805 for (j = 0; all_null && j < fields.length; j++) {
2806 if (fields[j]) all_null = false;
2809 this.warn("The dygraphs
'labels' option is set
, but the first row of
" +
2810 "CSV
data ('" + line + "') appears to also contain labels
. " +
2811 "Will drop the CSV labels and
use the option labels
.");
2819 this.warn("CSV is out of order
; order it correctly to speed loading
.");
2820 ret.sort(function(a,b) { return a[0] - b[0]; });
2828 * The user has provided their data as a pre-packaged JS array. If the x values
2829 * are numeric, this is the same as dygraphs' internal format. If the x values
2830 * are dates, we need to convert them from Date objects to ms since epoch.
2831 * @param {[Object]} data
2832 * @return {[Object]} data with numeric x values.
2834 Dygraph.prototype.parseArray_ = function(data) {
2835 // Peek at the first x value to see if it's numeric.
2836 if (data.length === 0) {
2837 this.error("Can
't plot empty data set");
2840 if (data[0].length === 0) {
2841 this.error("Data set cannot contain an empty row");
2846 if (this.attr_("labels") === null) {
2847 this.warn("Using default labels. Set labels explicitly via 'labels
' " +
2848 "in the options parameter");
2849 this.attrs_.labels = [ "X" ];
2850 for (i = 1; i < data[0].length; i++) {
2851 this.attrs_.labels.push("Y" + i);
2855 if (Dygraph.isDateLike(data[0][0])) {
2856 // Some intelligent defaults for a date x-axis.
2857 this.attrs_.axes.x.valueFormatter = Dygraph.dateString_;
2858 this.attrs_.axes.x.axisLabelFormatter = Dygraph.dateAxisFormatter;
2859 this.attrs_.axes.x.ticker = Dygraph.dateTicker;
2861 // Assume they're all dates
.
2862 var parsedData
= Dygraph
.clone(data
);
2863 for (i
= 0; i
< data
.length
; i
++) {
2864 if (parsedData
[i
].length
=== 0) {
2865 this.error("Row " + (1 + i
) + " of data is empty");
2868 if (parsedData
[i
][0] === null ||
2869 typeof(parsedData
[i
][0].getTime
) != 'function' ||
2870 isNaN(parsedData
[i
][0].getTime())) {
2871 this.error("x value in row " + (1 + i
) + " is not a Date");
2874 parsedData
[i
][0] = parsedData
[i
][0].getTime();
2878 // Some intelligent defaults for a numeric x-axis.
2879 /** @private (shut up, jsdoc!) */
2880 this.attrs_
.axes
.x
.valueFormatter
= function(x
) { return x
; };
2881 this.attrs_
.axes
.x
.axisLabelFormatter
= Dygraph
.numberAxisLabelFormatter
;
2882 this.attrs_
.axes
.x
.ticker
= Dygraph
.numericTicks
;
2888 * Parses a DataTable object from gviz.
2889 * The data is expected to have a first column that is either a date or a
2890 * number. All subsequent columns must be numbers. If there is a clear mismatch
2891 * between this.xValueParser_ and the type of the first column, it will be
2892 * fixed. Fills out rawData_.
2893 * @param {[Object]} data See above.
2896 Dygraph
.prototype.parseDataTable_
= function(data
) {
2897 var shortTextForAnnotationNum
= function(num
) {
2898 // converts [0-9]+ [A-Z][a-z]*
2899 // example: 0=A, 1=B, 25=Z, 26=Aa, 27=Ab
2900 // and continues like.. Ba Bb .. Za .. Zz..Aaa...Zzz Aaaa Zzzz
2901 var shortText
= String
.fromCharCode(65 /* A */ + num
% 26);
2902 num
= Math
.floor(num
/ 26);
2904 shortText
= String
.fromCharCode(65 /* A */ + (num
- 1) % 26 ) + shortText
.toLowerCase();
2905 num
= Math
.floor((num
- 1) / 26);
2910 var cols
= data
.getNumberOfColumns();
2911 var rows
= data
.getNumberOfRows();
2913 var indepType
= data
.getColumnType(0);
2914 if (indepType
== 'date' || indepType
== 'datetime') {
2915 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
2916 this.attrs_
.axes
.x
.valueFormatter
= Dygraph
.dateString_
;
2917 this.attrs_
.axes
.x
.ticker
= Dygraph
.dateTicker
;
2918 this.attrs_
.axes
.x
.axisLabelFormatter
= Dygraph
.dateAxisFormatter
;
2919 } else if (indepType
== 'number') {
2920 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
2921 this.attrs_
.axes
.x
.valueFormatter
= function(x
) { return x
; };
2922 this.attrs_
.axes
.x
.ticker
= Dygraph
.numericTicks
;
2923 this.attrs_
.axes
.x
.axisLabelFormatter
= this.attrs_
.axes
.x
.valueFormatter
;
2925 this.error("only 'date', 'datetime' and 'number' types are supported for " +
2926 "column 1 of DataTable input (Got '" + indepType
+ "')");
2930 // Array of the column indices which contain data (and not annotations).
2932 var annotationCols
= {}; // data index -> [annotation cols]
2933 var hasAnnotations
= false;
2935 for (i
= 1; i
< cols
; i
++) {
2936 var type
= data
.getColumnType(i
);
2937 if (type
== 'number') {
2939 } else if (type
== 'string' && this.attr_('displayAnnotations')) {
2940 // This is OK -- it's an annotation column.
2941 var dataIdx
= colIdx
[colIdx
.length
- 1];
2942 if (!annotationCols
.hasOwnProperty(dataIdx
)) {
2943 annotationCols
[dataIdx
] = [i
];
2945 annotationCols
[dataIdx
].push(i
);
2947 hasAnnotations
= true;
2949 this.error("Only 'number' is supported as a dependent type with Gviz." +
2950 " 'string' is only supported if displayAnnotations is true");
2954 // Read column labels
2955 // TODO(danvk): add support back for errorBars
2956 var labels
= [data
.getColumnLabel(0)];
2957 for (i
= 0; i
< colIdx
.length
; i
++) {
2958 labels
.push(data
.getColumnLabel(colIdx
[i
]));
2959 if (this.attr_("errorBars")) i
+= 1;
2961 this.attrs_
.labels
= labels
;
2962 cols
= labels
.length
;
2965 var outOfOrder
= false;
2966 var annotations
= [];
2967 for (i
= 0; i
< rows
; i
++) {
2969 if (typeof(data
.getValue(i
, 0)) === 'undefined' ||
2970 data
.getValue(i
, 0) === null) {
2971 this.warn("Ignoring row " + i
+
2972 " of DataTable because of undefined or null first column.");
2976 if (indepType
== 'date' || indepType
== 'datetime') {
2977 row
.push(data
.getValue(i
, 0).getTime());
2979 row
.push(data
.getValue(i
, 0));
2981 if (!this.attr_("errorBars")) {
2982 for (j
= 0; j
< colIdx
.length
; j
++) {
2983 var col
= colIdx
[j
];
2984 row
.push(data
.getValue(i
, col
));
2985 if (hasAnnotations
&&
2986 annotationCols
.hasOwnProperty(col
) &&
2987 data
.getValue(i
, annotationCols
[col
][0]) !== null) {
2989 ann
.series
= data
.getColumnLabel(col
);
2991 ann
.shortText
= shortTextForAnnotationNum(annotations
.length
);
2993 for (var k
= 0; k
< annotationCols
[col
].length
; k
++) {
2994 if (k
) ann
.text
+= "\n";
2995 ann
.text
+= data
.getValue(i
, annotationCols
[col
][k
]);
2997 annotations
.push(ann
);
3001 // Strip out infinities, which give dygraphs problems later on.
3002 for (j
= 0; j
< row
.length
; j
++) {
3003 if (!isFinite(row
[j
])) row
[j
] = null;
3006 for (j
= 0; j
< cols
- 1; j
++) {
3007 row
.push([ data
.getValue(i
, 1 + 2 * j
), data
.getValue(i
, 2 + 2 * j
) ]);
3010 if (ret
.length
> 0 && row
[0] < ret
[ret
.length
- 1][0]) {
3017 this.warn("DataTable is out of order; order it correctly to speed loading.");
3018 ret
.sort(function(a
,b
) { return a
[0] - b
[0]; });
3020 this.rawData_
= ret
;
3022 if (annotations
.length
> 0) {
3023 this.setAnnotations(annotations
, true);
3028 * Get the CSV data. If it's in a function, call that function. If it's in a
3029 * file, do an XMLHttpRequest to get it.
3032 Dygraph
.prototype.start_
= function() {
3033 var data
= this.file_
;
3035 // Functions can return references of all other types.
3036 if (typeof data
== 'function') {
3040 if (Dygraph
.isArrayLike(data
)) {
3041 this.rawData_
= this.parseArray_(data
);
3043 } else if (typeof data
== 'object' &&
3044 typeof data
.getColumnRange
== 'function') {
3045 // must be a DataTable from gviz.
3046 this.parseDataTable_(data
);
3048 } else if (typeof data
== 'string') {
3049 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
3050 if (data
.indexOf('\n') >= 0) {
3051 this.loadedEvent_(data
);
3053 var req
= new XMLHttpRequest();
3055 req
.onreadystatechange
= function () {
3056 if (req
.readyState
== 4) {
3057 if (req
.status
=== 200 || // Normal http
3058 req
.status
=== 0) { // Chrome w/ --allow
-file
-access
-from
-files
3059 caller
.loadedEvent_(req
.responseText
);
3064 req
.open("GET", data
, true);
3068 this.error("Unknown data format: " + (typeof data
));
3073 * Changes various properties of the graph. These can include:
3075 * <li>file: changes the source data for the graph</li>
3076 * <li>errorBars: changes whether the data contains stddev</li>
3079 * There's a huge variety of options that can be passed to this method. For a
3080 * full list, see http://dygraphs.com/options.html.
3082 * @param {Object} attrs The new properties and values
3083 * @param {Boolean} [block_redraw] Usually the chart is redrawn after every
3084 * call to updateOptions(). If you know better, you can pass true to explicitly
3085 * block the redraw. This can be useful for chaining updateOptions() calls,
3086 * avoiding the occasional infinite loop and preventing redraws when it's not
3087 * necessary (e.g. when updating a callback).
3089 Dygraph
.prototype.updateOptions
= function(input_attrs
, block_redraw
) {
3090 if (typeof(block_redraw
) == 'undefined') block_redraw
= false;
3092 // mapLegacyOptions_ drops the "file" parameter as a convenience to us.
3093 var file
= input_attrs
.file
;
3094 var attrs
= Dygraph
.mapLegacyOptions_(input_attrs
);
3096 // TODO(danvk): this is a mess. Move these options into attr_.
3097 if ('rollPeriod' in attrs
) {
3098 this.rollPeriod_
= attrs
.rollPeriod
;
3100 if ('dateWindow' in attrs
) {
3101 this.dateWindow_
= attrs
.dateWindow
;
3102 if (!('isZoomedIgnoreProgrammaticZoom' in attrs
)) {
3103 this.zoomed_x_
= (attrs
.dateWindow
!== null);
3106 if ('valueRange' in attrs
&& !('isZoomedIgnoreProgrammaticZoom' in attrs
)) {
3107 this.zoomed_y_
= (attrs
.valueRange
!== null);
3110 // TODO(danvk): validate per-series options.
3115 // highlightCircleSize
3117 // Check if this set options will require new points.
3118 var requiresNewPoints
= Dygraph
.isPixelChangingOptionList(this.attr_("labels"), attrs
);
3120 Dygraph
.updateDeep(this.user_attrs_
, attrs
);
3124 if (!block_redraw
) this.start_();
3126 if (!block_redraw
) {
3127 if (requiresNewPoints
) {
3130 this.renderGraph_(false, false);
3137 * Returns a copy of the options with deprecated names converted into current
3138 * names. Also drops the (potentially-large) 'file' attribute. If the caller is
3139 * interested in that, they should save a copy before calling this.
3142 Dygraph
.mapLegacyOptions_
= function(attrs
) {
3144 for (var k
in attrs
) {
3145 if (k
== 'file') continue;
3146 if (attrs
.hasOwnProperty(k
)) my_attrs
[k
] = attrs
[k
];
3149 var set
= function(axis
, opt
, value
) {
3150 if (!my_attrs
.axes
) my_attrs
.axes
= {};
3151 if (!my_attrs
.axes
[axis
]) my_attrs
.axes
[axis
] = {};
3152 my_attrs
.axes
[axis
][opt
] = value
;
3154 var map
= function(opt
, axis
, new_opt
) {
3155 if (typeof(attrs
[opt
]) != 'undefined') {
3156 set(axis
, new_opt
, attrs
[opt
]);
3157 delete my_attrs
[opt
];
3161 // This maps, e.g., xValueFormater -> axes: { x: { valueFormatter: ... } }
3162 map('xValueFormatter', 'x', 'valueFormatter');
3163 map('pixelsPerXLabel', 'x', 'pixelsPerLabel');
3164 map('xAxisLabelFormatter', 'x', 'axisLabelFormatter');
3165 map('xTicker', 'x', 'ticker');
3166 map('yValueFormatter', 'y', 'valueFormatter');
3167 map('pixelsPerYLabel', 'y', 'pixelsPerLabel');
3168 map('yAxisLabelFormatter', 'y', 'axisLabelFormatter');
3169 map('yTicker', 'y', 'ticker');
3174 * Resizes the dygraph. If no parameters are specified, resizes to fill the
3175 * containing div (which has presumably changed size since the dygraph was
3176 * instantiated. If the width/height are specified, the div will be resized.
3178 * This is far more efficient than destroying and re-instantiating a
3179 * Dygraph, since it doesn't have to reparse the underlying data.
3181 * @param {Number} [width] Width (in pixels)
3182 * @param {Number} [height] Height (in pixels)
3184 Dygraph
.prototype.resize
= function(width
, height
) {
3185 if (this.resize_lock
) {
3188 this.resize_lock
= true;
3190 if ((width
=== null) != (height
=== null)) {
3191 this.warn("Dygraph.resize() should be called with zero parameters or " +
3192 "two non-NULL parameters. Pretending it was zero.");
3193 width
= height
= null;
3196 var old_width
= this.width_
;
3197 var old_height
= this.height_
;
3200 this.maindiv_
.style
.width
= width
+ "px";
3201 this.maindiv_
.style
.height
= height
+ "px";
3202 this.width_
= width
;
3203 this.height_
= height
;
3205 this.width_
= this.maindiv_
.clientWidth
;
3206 this.height_
= this.maindiv_
.clientHeight
;
3209 if (old_width
!= this.width_
|| old_height
!= this.height_
) {
3210 // TODO(danvk): there should be a clear() method.
3211 this.maindiv_
.innerHTML
= "";
3212 this.roller_
= null;
3213 this.attrs_
.labelsDiv
= null;
3214 this.createInterface_();
3215 if (this.annotations_
.length
) {
3216 // createInterface_ reset the layout, so we need to do this.
3217 this.layout_
.setAnnotations(this.annotations_
);
3222 this.resize_lock
= false;
3226 * Adjusts the number of points in the rolling average. Updates the graph to
3227 * reflect the new averaging period.
3228 * @param {Number} length Number of points over which to average the data.
3230 Dygraph
.prototype.adjustRoll
= function(length
) {
3231 this.rollPeriod_
= length
;
3236 * Returns a boolean array of visibility statuses.
3238 Dygraph
.prototype.visibility
= function() {
3239 // Do lazy-initialization, so that this happens after we know the number of
3241 if (!this.attr_("visibility")) {
3242 this.attrs_
.visibility
= [];
3244 // TODO(danvk): it looks like this could go into an infinite loop w/ user_attrs
.
3245 while (this.attr_("visibility").length
< this.numColumns() - 1) {
3246 this.attrs_
.visibility
.push(true);
3248 return this.attr_("visibility");
3252 * Changes the visiblity of a series.
3254 Dygraph
.prototype.setVisibility
= function(num
, value
) {
3255 var x
= this.visibility();
3256 if (num
< 0 || num
>= x
.length
) {
3257 this.warn("invalid series number in setVisibility: " + num
);
3265 * How large of an area will the dygraph render itself in?
3266 * This is used for testing.
3267 * @return A {width: w, height: h} object.
3270 Dygraph
.prototype.size
= function() {
3271 return { width
: this.width_
, height
: this.height_
};
3275 * Update the list of annotations and redraw the chart.
3276 * See dygraphs.com/annotations.html for more info on how to use annotations.
3277 * @param ann {Array} An array of annotation objects.
3278 * @param suppressDraw {Boolean} Set to "true" to block chart redraw (optional).
3280 Dygraph
.prototype.setAnnotations
= function(ann
, suppressDraw
) {
3281 // Only add the annotation CSS rule once we know it will be used.
3282 Dygraph
.addAnnotationRule();
3283 this.annotations_
= ann
;
3284 this.layout_
.setAnnotations(this.annotations_
);
3285 if (!suppressDraw
) {
3291 * Return the list of annotations.
3293 Dygraph
.prototype.annotations
= function() {
3294 return this.annotations_
;
3298 * Get the list of label names for this graph. The first column is the
3299 * x-axis, so the data series names start at index 1.
3301 Dygraph
.prototype.getLabels
= function(name
) {
3302 return this.attr_("labels").slice();
3306 * Get the index of a series (column) given its name. The first column is the
3307 * x-axis, so the data series start with index 1.
3309 Dygraph
.prototype.indexFromSetName
= function(name
) {
3310 return this.setIndexByName_
[name
];
3315 * Adds a default style for the annotation CSS classes to the document. This is
3316 * only executed when annotations are actually used. It is designed to only be
3317 * called once -- all calls after the first will return immediately.
3319 Dygraph
.addAnnotationRule
= function() {
3320 if (Dygraph
.addedAnnotationCSS
) return;
3322 var rule
= "border: 1px solid black; " +
3323 "background-color: white; " +
3324 "text-align: center;";
3326 var styleSheetElement
= document
.createElement("style");
3327 styleSheetElement
.type
= "text/css";
3328 document
.getElementsByTagName("head")[0].appendChild(styleSheetElement
);
3330 // Find the first style sheet that we can access.
3331 // We may not add a rule to a style sheet from another domain for security
3332 // reasons. This sometimes comes up when using gviz, since the Google gviz JS
3333 // adds its own style sheets from google.com.
3334 for (var i
= 0; i
< document
.styleSheets
.length
; i
++) {
3335 if (document
.styleSheets
[i
].disabled
) continue;
3336 var mysheet
= document
.styleSheets
[i
];
3338 if (mysheet
.insertRule
) { // Firefox
3339 var idx
= mysheet
.cssRules
? mysheet
.cssRules
.length
: 0;
3340 mysheet
.insertRule(".dygraphDefaultAnnotation { " + rule
+ " }", idx
);
3341 } else if (mysheet
.addRule
) { // IE
3342 mysheet
.addRule(".dygraphDefaultAnnotation", rule
);
3344 Dygraph
.addedAnnotationCSS
= true;
3347 // Was likely a security exception.
3351 this.warn("Unable to add default annotation CSS rule; display may be off.");
3354 // Older pages may still use this name.
3355 var DateGraph
= Dygraph
;