1 // Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
2 // All Rights Reserved.
5 * @fileoverview Creates an interactive, zoomable graph based on a CSV file or
6 * string. Dygraph can handle multiple series with or without error bars. The
7 * date/value ranges will be automatically set. Dygraph uses the
8 * <canvas> tag, so it only works in FF1.5+.
9 * @author danvdk@gmail.com (Dan Vanderkam)
12 <div id="graphdiv" style="width:800px; height:500px;"></div>
13 <script type="text/javascript">
14 new Dygraph(document.getElementById("graphdiv"),
15 "datafile.csv", // CSV file with headers
19 The CSV file is of the form
21 Date,SeriesA,SeriesB,SeriesC
25 If the 'errorBars' option is set in the constructor, the input should be of
27 Date,SeriesA,SeriesB,...
28 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
29 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
31 If the 'fractions' option is set, the input should be of the form:
33 Date,SeriesA,SeriesB,...
34 YYYYMMDD,A1/B1,A2/B2,...
35 YYYYMMDD,A1/B1,A2/B2,...
37 And error bars will be calculated automatically using a binomial distribution.
39 For further documentation and examples, see http://dygraphs.com/
44 * An interactive, zoomable graph
45 * @param {String | Function} file A file containing CSV data or a function that
46 * returns this data. The expected format for each line is
47 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
48 * YYYYMMDD,val1,stddev1,val2,stddev2,...
49 * @param {Object} attrs Various other attributes, e.g. errorBars determines
50 * whether the input data contains error ranges.
52 Dygraph
= function(div
, data
, opts
) {
53 if (arguments
.length
> 0) {
54 if (arguments
.length
== 4) {
55 // Old versions of dygraphs took in the series labels as a constructor
56 // parameter. This doesn't make sense anymore, but it's easy to continue
57 // to support this usage.
58 this.warn("Using deprecated four-argument dygraph constructor");
59 this.__old_init__(div
, data
, arguments
[2], arguments
[3]);
61 this.__init__(div
, data
, opts
);
66 Dygraph
.NAME
= "Dygraph";
67 Dygraph
.VERSION
= "1.2";
68 Dygraph
.__repr__
= function() {
69 return "[" + this.NAME
+ " " + this.VERSION
+ "]";
71 Dygraph
.toString
= function() {
72 return this.__repr__();
76 * Formatting to use for an integer number.
78 * @param {Number} x The number to format
79 * @param {Number} unused_precision The precision to use, ignored.
80 * @return {String} A string formatted like %g in printf. The max generated
81 * string length should be precision + 6 (e.g 1.123e+300).
83 Dygraph
.intFormat
= function(x
, unused_precision
) {
88 * Number formatting function which mimicks the behavior of %g in printf, i.e.
89 * either exponential or fixed format (without trailing 0s) is used depending on
90 * the length of the generated string. The advantage of this format is that
91 * there is a predictable upper bound on the resulting string length,
92 * significant figures are not dropped, and normal numbers are not displayed in
93 * exponential notation.
95 * NOTE: JavaScript's native toPrecision() is NOT a drop-in replacement for %g.
96 * It creates strings which are too long for absolute values between 10^-4 and
97 * 10^-6. See tests/number-format.html for output examples.
99 * @param {Number} x The number to format
100 * @param {Number} opt_precision The precision to use, default 2.
101 * @return {String} A string formatted like %g in printf. The max generated
102 * string length should be precision + 6 (e.g 1.123e+300).
104 Dygraph
.floatFormat
= function(x
, opt_precision
) {
105 // Avoid invalid precision values; [1, 21] is the valid range.
106 var p
= Math
.min(Math
.max(1, opt_precision
|| 2), 21);
108 // This is deceptively simple. The actual algorithm comes from:
110 // Max allowed length = p + 4
111 // where 4 comes from 'e+n' and '.'.
113 // Length of fixed format = 2 + y + p
114 // where 2 comes from '0.' and y = # of leading zeroes.
116 // Equating the two and solving for y yields y = 2, or 0.00xxxx which is
119 // Since the behavior of toPrecision() is identical for larger numbers, we
120 // don't have to worry about the other bound.
122 // Finally, the argument for toExponential() is the number of trailing digits,
123 // so we take off 1 for the value before the '.'.
124 return (Math
.abs(x
) < 1.0e-3 && x
!= 0.0) ?
125 x
.toExponential(p
- 1) : x
.toPrecision(p
);
128 // Various default values
129 Dygraph
.DEFAULT_ROLL_PERIOD
= 1;
130 Dygraph
.DEFAULT_WIDTH
= 480;
131 Dygraph
.DEFAULT_HEIGHT
= 320;
132 Dygraph
.AXIS_LINE_WIDTH
= 0.3;
134 Dygraph
.LOG_SCALE
= 10;
135 Dygraph
.LN_TEN
= Math
.log(Dygraph
.LOG_SCALE
);
136 Dygraph
.log10
= function(x
) {
137 return Math
.log(x
) / Dygraph
.LN_TEN
;
140 // Default attribute values.
141 Dygraph
.DEFAULT_ATTRS
= {
142 highlightCircleSize
: 3,
148 // TODO(danvk): move defaults from createStatusMessage_ here.
150 labelsSeparateLines
: false,
151 labelsShowZeroValues
: true,
154 showLabelsOnHighlight
: true,
156 yValueFormatter
: function(x
, opt_precision
) {
157 var s
= Dygraph
.floatFormat(x
, opt_precision
);
158 var s2
= Dygraph
.intFormat(x
);
159 return s
.length
< s2
.length
? s
: s2
;
165 axisLabelFontSize
: 14,
168 xAxisLabelFormatter
: Dygraph
.dateAxisFormatter
,
172 xValueFormatter
: Dygraph
.dateString_
,
173 xValueParser
: Dygraph
.dateParser
,
174 xTicker
: Dygraph
.dateTicker
,
181 wilsonInterval
: true, // only relevant if fractions is true
185 connectSeparatedPoints
: false,
188 hideOverlayOnMouseOut
: true,
190 // TODO(danvk): support 'onmouseover' and 'never', and remove synonyms.
191 legend
: 'onmouseover', // the only relevant value at the moment is 'always'.
196 interactionModel
: null // will be set to Dygraph.defaultInteractionModel.
199 // Various logging levels.
205 // Directions for panning and zooming. Use bit operations when combined
206 // values are possible.
207 Dygraph
.HORIZONTAL
= 1;
208 Dygraph
.VERTICAL
= 2;
210 // Used for initializing annotation CSS rules only once.
211 Dygraph
.addedAnnotationCSS
= false;
213 Dygraph
.prototype.__old_init__
= function(div
, file
, labels
, attrs
) {
214 // Labels is no longer a constructor parameter, since it's typically set
215 // directly from the data source. It also conains a name for the x-axis,
216 // which the previous constructor form did not.
217 if (labels
!= null) {
218 var new_labels
= ["Date"];
219 for (var i
= 0; i
< labels
.length
; i
++) new_labels
.push(labels
[i
]);
220 Dygraph
.update(attrs
, { 'labels': new_labels
});
222 this.__init__(div
, file
, attrs
);
226 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
227 * and context <canvas> inside of it. See the constructor for details.
229 * @param {Element} div the Element to render the graph into.
230 * @param {String | Function} file Source data
231 * @param {Object} attrs Miscellaneous other options
234 Dygraph
.prototype.__init__
= function(div
, file
, attrs
) {
235 // Hack for IE: if we're using excanvas and the document hasn't finished
236 // loading yet (and hence may not have initialized whatever it needs to
237 // initialize), then keep calling this routine periodically until it has.
238 if (/MSIE/.test(navigator
.userAgent
) && !window
.opera
&&
239 typeof(G_vmlCanvasManager
) != 'undefined' &&
240 document
.readyState
!= 'complete') {
242 setTimeout(function() { self
.__init__(div
, file
, attrs
) }, 100);
245 // Support two-argument constructor
246 if (attrs
== null) { attrs
= {}; }
248 // Copy the important bits into the object
249 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
252 this.rollPeriod_
= attrs
.rollPeriod
|| Dygraph
.DEFAULT_ROLL_PERIOD
;
253 this.previousVerticalX_
= -1;
254 this.fractions_
= attrs
.fractions
|| false;
255 this.dateWindow_
= attrs
.dateWindow
|| null;
257 this.wilsonInterval_
= attrs
.wilsonInterval
|| true;
258 this.is_initial_draw_
= true;
259 this.annotations_
= [];
261 // Number of digits to use when labeling the x (if numeric) and y axis
263 this.numXDigits_
= 2;
264 this.numYDigits_
= 2;
266 // When labeling x (if numeric) or y values in the legend, there are
267 // numDigits + numExtraDigits of precision used. For axes labels with N
268 // digits of precision, the data should be displayed with at least N+1 digits
269 // of precision. The reason for this is to divide each interval between
270 // successive ticks into tenths (for 1) or hundredths (for 2), etc. For
271 // example, if the labels are [0, 1, 2], we want data to be displayed as
273 this.numExtraDigits_
= 1;
275 // Clear the div. This ensure that, if multiple dygraphs are passed the same
276 // div, then only one will be drawn.
279 // If the div isn't already sized then inherit from our attrs or
280 // give it a default size.
281 if (div
.style
.width
== '') {
282 div
.style
.width
= (attrs
.width
|| Dygraph
.DEFAULT_WIDTH
) + "px";
284 if (div
.style
.height
== '') {
285 div
.style
.height
= (attrs
.height
|| Dygraph
.DEFAULT_HEIGHT
) + "px";
287 this.width_
= parseInt(div
.style
.width
, 10);
288 this.height_
= parseInt(div
.style
.height
, 10);
289 // The div might have been specified as percent of the current window size,
290 // convert that to an appropriate number of pixels.
291 if (div
.style
.width
.indexOf("%") == div
.style
.width
.length
- 1) {
292 this.width_
= div
.offsetWidth
;
294 if (div
.style
.height
.indexOf("%") == div
.style
.height
.length
- 1) {
295 this.height_
= div
.offsetHeight
;
298 if (this.width_
== 0) {
299 this.error("dygraph has zero width. Please specify a width in pixels.");
301 if (this.height_
== 0) {
302 this.error("dygraph has zero height. Please specify a height in pixels.");
305 // TODO(danvk): set fillGraph to be part of attrs_ here, not user_attrs_.
306 if (attrs
['stackedGraph']) {
307 attrs
['fillGraph'] = true;
308 // TODO(nikhilk): Add any other stackedGraph checks here.
311 // Dygraphs has many options, some of which interact with one another.
312 // To keep track of everything, we maintain two sets of options:
314 // this.user_attrs_ only options explicitly set by the user.
315 // this.attrs_ defaults, options derived from user_attrs_, data.
317 // Options are then accessed this.attr_('attr'), which first looks at
318 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
319 // defaults without overriding behavior that the user specifically asks for.
320 this.user_attrs_
= {};
321 Dygraph
.update(this.user_attrs_
, attrs
);
324 Dygraph
.update(this.attrs_
, Dygraph
.DEFAULT_ATTRS
);
326 this.boundaryIds_
= [];
328 // Make a note of whether labels will be pulled from the CSV file.
329 this.labelsFromCSV_
= (this.attr_("labels") == null);
331 // Create the containing DIV and other interactive elements
332 this.createInterface_();
337 Dygraph
.prototype.toString
= function() {
338 var maindiv
= this.maindiv_
;
339 var id
= (maindiv
&& maindiv
.id
) ? maindiv
.id
: maindiv
340 return "[Dygraph " + id
+ "]";
343 Dygraph
.prototype.attr_
= function(name
, seriesName
) {
344 // <REMOVE_FOR_COMBINED>
345 if (typeof(Dygraph
.OPTIONS_REFERENCE
) === 'undefined') {
346 this.error('Must include options reference JS for testing');
347 } else if (!Dygraph
.OPTIONS_REFERENCE
.hasOwnProperty(name
)) {
348 this.error('Dygraphs is using property ' + name
+ ', which has no entry ' +
349 'in the Dygraphs.OPTIONS_REFERENCE listing.');
350 // Only log this error once.
351 Dygraph
.OPTIONS_REFERENCE
[name
] = true;
353 // </REMOVE_FOR_COMBINED
>
355 typeof(this.user_attrs_
[seriesName
]) != 'undefined' &&
356 this.user_attrs_
[seriesName
] != null &&
357 typeof(this.user_attrs_
[seriesName
][name
]) != 'undefined') {
358 return this.user_attrs_
[seriesName
][name
];
359 } else if (typeof(this.user_attrs_
[name
]) != 'undefined') {
360 return this.user_attrs_
[name
];
361 } else if (typeof(this.attrs_
[name
]) != 'undefined') {
362 return this.attrs_
[name
];
368 // TODO(danvk): any way I can get the line numbers to be this.warn call?
369 Dygraph
.prototype.log
= function(severity
, message
) {
370 if (typeof(console
) != 'undefined') {
373 console
.debug('dygraphs: ' + message
);
376 console
.info('dygraphs: ' + message
);
378 case Dygraph
.WARNING
:
379 console
.warn('dygraphs: ' + message
);
382 console
.error('dygraphs: ' + message
);
387 Dygraph
.prototype.info
= function(message
) {
388 this.log(Dygraph
.INFO
, message
);
390 Dygraph
.prototype.warn
= function(message
) {
391 this.log(Dygraph
.WARNING
, message
);
393 Dygraph
.prototype.error
= function(message
) {
394 this.log(Dygraph
.ERROR
, message
);
398 * Returns the current rolling period, as set by the user or an option.
399 * @return {Number} The number of points in the rolling window
401 Dygraph
.prototype.rollPeriod
= function() {
402 return this.rollPeriod_
;
406 * Returns the currently-visible x-range. This can be affected by zooming,
407 * panning or a call to updateOptions.
408 * Returns a two-element array: [left, right].
409 * If the Dygraph has dates on the x-axis, these will be millis since epoch.
411 Dygraph
.prototype.xAxisRange
= function() {
412 if (this.dateWindow_
) return this.dateWindow_
;
414 // The entire chart is visible.
415 var left
= this.rawData_
[0][0];
416 var right
= this.rawData_
[this.rawData_
.length
- 1][0];
417 return [left
, right
];
421 * Returns the currently-visible y-range for an axis. This can be affected by
422 * zooming, panning or a call to updateOptions. Axis indices are zero-based. If
423 * called with no arguments, returns the range of the first axis.
424 * Returns a two-element array: [bottom, top].
426 Dygraph
.prototype.yAxisRange
= function(idx
) {
427 if (typeof(idx
) == "undefined") idx
= 0;
428 if (idx
< 0 || idx
>= this.axes_
.length
) return null;
429 return [ this.axes_
[idx
].computedValueRange
[0],
430 this.axes_
[idx
].computedValueRange
[1] ];
434 * Returns the currently-visible y-ranges for each axis. This can be affected by
435 * zooming, panning, calls to updateOptions, etc.
436 * Returns an array of [bottom, top] pairs, one for each y-axis.
438 Dygraph
.prototype.yAxisRanges
= function() {
440 for (var i
= 0; i
< this.axes_
.length
; i
++) {
441 ret
.push(this.yAxisRange(i
));
446 // TODO(danvk): use these functions throughout dygraphs.
448 * Convert from data coordinates to canvas/div X/Y coordinates.
449 * If specified, do this conversion for the coordinate system of a particular
450 * axis. Uses the first axis by default.
451 * Returns a two-element array: [X, Y]
453 * Note: use toDomXCoord instead of toDomCoords(x, null) and use toDomYCoord
454 * instead of toDomCoords(null, y, axis).
456 Dygraph
.prototype.toDomCoords
= function(x
, y
, axis
) {
457 return [ this.toDomXCoord(x
), this.toDomYCoord(y
, axis
) ];
461 * Convert from data x coordinates to canvas/div X coordinate.
462 * If specified, do this conversion for the coordinate system of a particular
464 * Returns a single value or null if x is null.
466 Dygraph
.prototype.toDomXCoord
= function(x
) {
471 var area
= this.plotter_
.area
;
472 var xRange
= this.xAxisRange();
473 return area
.x
+ (x
- xRange
[0]) / (xRange
[1] - xRange
[0]) * area
.w
;
477 * Convert from data x coordinates to canvas/div Y coordinate and optional
478 * axis. Uses the first axis by default.
480 * returns a single value or null if y is null.
482 Dygraph
.prototype.toDomYCoord
= function(y
, axis
) {
483 var pct
= this.toPercentYCoord(y
, axis
);
488 var area
= this.plotter_
.area
;
489 return area
.y
+ pct
* area
.h
;
493 * Convert from canvas/div coords to data coordinates.
494 * If specified, do this conversion for the coordinate system of a particular
495 * axis. Uses the first axis by default.
496 * Returns a two-element array: [X, Y].
498 * Note: use toDataXCoord instead of toDataCoords(x, null) and use toDataYCoord
499 * instead of toDataCoords(null, y, axis).
501 Dygraph
.prototype.toDataCoords
= function(x
, y
, axis
) {
502 return [ this.toDataXCoord(x
), this.toDataYCoord(y
, axis
) ];
506 * Convert from canvas/div x coordinate to data coordinate.
508 * If x is null, this returns null.
510 Dygraph
.prototype.toDataXCoord
= function(x
) {
515 var area
= this.plotter_
.area
;
516 var xRange
= this.xAxisRange();
517 return xRange
[0] + (x
- area
.x
) / area
.w
* (xRange
[1] - xRange
[0]);
521 * Convert from canvas/div y coord to value.
523 * If y is null, this returns null.
524 * if axis is null, this uses the first axis.
526 Dygraph
.prototype.toDataYCoord
= function(y
, axis
) {
531 var area
= this.plotter_
.area
;
532 var yRange
= this.yAxisRange(axis
);
534 if (typeof(axis
) == "undefined") axis
= 0;
535 if (!this.axes_
[axis
].logscale
) {
536 return yRange
[0] + (area
.h
- y
) / area
.h
* (yRange
[1] - yRange
[0]);
538 // Computing the inverse of toDomCoord.
539 var pct
= (y
- area
.y
) / area
.h
541 // Computing the inverse of toPercentYCoord. The function was arrived at with
542 // the following steps:
544 // Original calcuation:
545 // pct = (logr1 - Dygraph.log10(y)) / (logr1
- Dygraph
.log10(yRange
[0]));
547 // Move denominator to both sides:
548 // pct * (logr1 - Dygraph.log10(yRange[0])) = logr1 - Dygraph.log10(y);
550 // subtract logr1, and take the negative value.
551 // logr1 - (pct * (logr1 - Dygraph.log10(yRange[0]))) = Dygraph.log10(y);
553 // Swap both sides of the equation, and we can compute the log of the
554 // return value. Which means we just need to use that as the exponent in
556 // Dygraph.log10(y) = logr1 - (pct * (logr1 - Dygraph.log10(yRange[0])));
558 var logr1
= Dygraph
.log10(yRange
[1]);
559 var exponent
= logr1
- (pct
* (logr1
- Dygraph
.log10(yRange
[0])));
560 var value
= Math
.pow(Dygraph
.LOG_SCALE
, exponent
);
566 * Converts a y for an axis to a percentage from the top to the
569 * If the coordinate represents a value visible on the canvas, then
570 * the value will be between 0 and 1, where 0 is the top of the canvas.
571 * However, this method will return values outside the range, as
572 * values can fall outside the canvas.
574 * If y is null, this returns null.
575 * if axis is null, this uses the first axis.
577 Dygraph
.prototype.toPercentYCoord
= function(y
, axis
) {
581 if (typeof(axis
) == "undefined") axis
= 0;
583 var area
= this.plotter_
.area
;
584 var yRange
= this.yAxisRange(axis
);
587 if (!this.axes_
[axis
].logscale
) {
588 // yrange[1] - y is unit distance from the bottom.
589 // yrange[1] - yrange[0] is the scale of the range.
590 // (yRange[1] - y) / (yRange
[1] - yRange
[0]) is the
% from the bottom
.
591 pct
= (yRange
[1] - y
) / (yRange
[1] - yRange
[0]);
593 var logr1
= Dygraph
.log10(yRange
[1]);
594 pct
= (logr1
- Dygraph
.log10(y
)) / (logr1
- Dygraph
.log10(yRange
[0]));
600 * Returns the number of columns (including the independent variable).
602 Dygraph
.prototype.numColumns
= function() {
603 return this.rawData_
[0].length
;
607 * Returns the number of rows (excluding any header/label row).
609 Dygraph
.prototype.numRows
= function() {
610 return this.rawData_
.length
;
614 * Returns the value in the given row and column. If the row and column exceed
615 * the bounds on the data, returns null. Also returns null if the value is
618 Dygraph
.prototype.getValue
= function(row
, col
) {
619 if (row
< 0 || row
> this.rawData_
.length
) return null;
620 if (col
< 0 || col
> this.rawData_
[row
].length
) return null;
622 return this.rawData_
[row
][col
];
625 Dygraph
.addEvent
= function(el
, evt
, fn
) {
626 var normed_fn
= function(e
) {
627 if (!e
) var e
= window
.event
;
630 if (window
.addEventListener
) { // Mozilla, Netscape, Firefox
631 el
.addEventListener(evt
, normed_fn
, false);
633 el
.attachEvent('on' + evt
, normed_fn
);
638 // Based on the article at
639 // http://www.switchonthecode.com/tutorials
/javascript
-tutorial
-the
-scroll
-wheel
640 Dygraph
.cancelEvent
= function(e
) {
641 e
= e
? e
: window
.event
;
642 if (e
.stopPropagation
) {
645 if (e
.preventDefault
) {
648 e
.cancelBubble
= true;
650 e
.returnValue
= false;
656 * Generates interface elements for the Dygraph: a containing div, a div to
657 * display the current point, and a textbox to adjust the rolling average
658 * period. Also creates the Renderer/Layout elements.
661 Dygraph
.prototype.createInterface_
= function() {
662 // Create the all-enclosing graph div
663 var enclosing
= this.maindiv_
;
665 this.graphDiv
= document
.createElement("div");
666 this.graphDiv
.style
.width
= this.width_
+ "px";
667 this.graphDiv
.style
.height
= this.height_
+ "px";
668 enclosing
.appendChild(this.graphDiv
);
670 // Create the canvas for interactive parts of the chart.
671 this.canvas_
= Dygraph
.createCanvas();
672 this.canvas_
.style
.position
= "absolute";
673 this.canvas_
.width
= this.width_
;
674 this.canvas_
.height
= this.height_
;
675 this.canvas_
.style
.width
= this.width_
+ "px"; // for IE
676 this.canvas_
.style
.height
= this.height_
+ "px"; // for IE
678 // ... and for static parts of the chart.
679 this.hidden_
= this.createPlotKitCanvas_(this.canvas_
);
681 // The interactive parts of the graph are drawn on top of the chart.
682 this.graphDiv
.appendChild(this.hidden_
);
683 this.graphDiv
.appendChild(this.canvas_
);
684 this.mouseEventElement_
= this.canvas_
;
687 Dygraph
.addEvent(this.mouseEventElement_
, 'mousemove', function(e
) {
688 dygraph
.mouseMove_(e
);
690 Dygraph
.addEvent(this.mouseEventElement_
, 'mouseout', function(e
) {
691 dygraph
.mouseOut_(e
);
694 // Create the grapher
695 // TODO(danvk): why does the Layout need its own set of options?
696 this.layoutOptions_
= { 'xOriginIsZero': false };
697 Dygraph
.update(this.layoutOptions_
, this.attrs_
);
698 Dygraph
.update(this.layoutOptions_
, this.user_attrs_
);
699 Dygraph
.update(this.layoutOptions_
, {
700 'errorBars': (this.attr_("errorBars") || this.attr_("customBars")) });
702 this.layout_
= new DygraphLayout(this, this.layoutOptions_
);
704 // TODO(danvk): why does the Renderer need its own set of options?
705 this.renderOptions_
= { colorScheme
: this.colors_
,
707 axisLineWidth
: Dygraph
.AXIS_LINE_WIDTH
};
708 Dygraph
.update(this.renderOptions_
, this.attrs_
);
709 Dygraph
.update(this.renderOptions_
, this.user_attrs_
);
711 this.createStatusMessage_();
712 this.createDragInterface_();
716 * Detach DOM elements in the dygraph and null out all data references.
717 * Calling this when you're done with a dygraph can dramatically reduce memory
718 * usage. See, e.g., the tests/perf.html example.
720 Dygraph
.prototype.destroy
= function() {
721 var removeRecursive
= function(node
) {
722 while (node
.hasChildNodes()) {
723 removeRecursive(node
.firstChild
);
724 node
.removeChild(node
.firstChild
);
727 removeRecursive(this.maindiv_
);
729 var nullOut
= function(obj
) {
731 if (typeof(obj
[n
]) === 'object') {
737 // These may not all be necessary, but it can't hurt...
738 nullOut(this.layout_
);
739 nullOut(this.plotter_
);
744 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
745 * this particular canvas. All Dygraph work is done on this.canvas_.
746 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
747 * @return {Object} The newly-created canvas
750 Dygraph
.prototype.createPlotKitCanvas_
= function(canvas
) {
751 var h
= Dygraph
.createCanvas();
752 h
.style
.position
= "absolute";
753 // TODO(danvk): h should be offset from canvas. canvas needs to include
754 // some extra area to make it easier to zoom in on the far left and far
755 // right. h needs to be precisely the plot area, so that clipping occurs.
756 h
.style
.top
= canvas
.style
.top
;
757 h
.style
.left
= canvas
.style
.left
;
758 h
.width
= this.width_
;
759 h
.height
= this.height_
;
760 h
.style
.width
= this.width_
+ "px"; // for IE
761 h
.style
.height
= this.height_
+ "px"; // for IE
765 // Taken from MochiKit.Color
766 Dygraph
.hsvToRGB
= function (hue
, saturation
, value
) {
770 if (saturation
=== 0) {
775 var i
= Math
.floor(hue
* 6);
776 var f
= (hue
* 6) - i
;
777 var p
= value
* (1 - saturation
);
778 var q
= value
* (1 - (saturation
* f
));
779 var t
= value
* (1 - (saturation
* (1 - f
)));
781 case 1: red
= q
; green
= value
; blue
= p
; break;
782 case 2: red
= p
; green
= value
; blue
= t
; break;
783 case 3: red
= p
; green
= q
; blue
= value
; break;
784 case 4: red
= t
; green
= p
; blue
= value
; break;
785 case 5: red
= value
; green
= p
; blue
= q
; break;
786 case 6: // fall through
787 case 0: red
= value
; green
= t
; blue
= p
; break;
790 red
= Math
.floor(255 * red
+ 0.5);
791 green
= Math
.floor(255 * green
+ 0.5);
792 blue
= Math
.floor(255 * blue
+ 0.5);
793 return 'rgb(' + red
+ ',' + green
+ ',' + blue
+ ')';
798 * Generate a set of distinct colors for the data series. This is done with a
799 * color wheel. Saturation/Value are customizable, and the hue is
800 * equally-spaced around the color wheel. If a custom set of colors is
801 * specified, that is used instead.
804 Dygraph
.prototype.setColors_
= function() {
805 // TODO(danvk): compute this directly into this.attrs_['colorScheme'] and do
806 // away with this.renderOptions_.
807 var num
= this.attr_("labels").length
- 1;
809 var colors
= this.attr_('colors');
811 var sat
= this.attr_('colorSaturation') || 1.0;
812 var val
= this.attr_('colorValue') || 0.5;
813 var half
= Math
.ceil(num
/ 2);
814 for (var i
= 1; i
<= num
; i
++) {
815 if (!this.visibility()[i
-1]) continue;
816 // alternate colors for high contrast.
817 var idx
= i
% 2 ? Math
.ceil(i
/ 2) : (half + i / 2);
818 var hue
= (1.0 * idx
/ (1 + num
));
819 this.colors_
.push(Dygraph
.hsvToRGB(hue
, sat
, val
));
822 for (var i
= 0; i
< num
; i
++) {
823 if (!this.visibility()[i
]) continue;
824 var colorStr
= colors
[i
% colors
.length
];
825 this.colors_
.push(colorStr
);
829 // TODO(danvk): update this w/r
/t/ the
new options system
.
830 this.renderOptions_
.colorScheme
= this.colors_
;
831 Dygraph
.update(this.plotter_
.options
, this.renderOptions_
);
832 Dygraph
.update(this.layoutOptions_
, this.user_attrs_
);
833 Dygraph
.update(this.layoutOptions_
, this.attrs_
);
837 * Return the list of colors. This is either the list of colors passed in the
838 * attributes, or the autogenerated list of rgb(r,g,b) strings.
839 * @return {Array<string>} The list of colors.
841 Dygraph
.prototype.getColors
= function() {
845 // The following functions are from quirksmode.org with a modification for Safari from
846 // http://blog.firetree.net/2005/07/04/javascript-find-position/
847 // http://www.quirksmode.org/js
/findpos
.html
848 Dygraph
.findPosX
= function(obj
) {
853 curleft
+= obj
.offsetLeft
;
854 if(!obj
.offsetParent
)
856 obj
= obj
.offsetParent
;
863 Dygraph
.findPosY
= function(obj
) {
868 curtop
+= obj
.offsetTop
;
869 if(!obj
.offsetParent
)
871 obj
= obj
.offsetParent
;
881 * Create the div that contains information on the selected point(s)
882 * This goes in the top right of the canvas, unless an external div has already
886 Dygraph
.prototype.createStatusMessage_
= function() {
887 var userLabelsDiv
= this.user_attrs_
["labelsDiv"];
888 if (userLabelsDiv
&& null != userLabelsDiv
889 && (typeof(userLabelsDiv
) == "string" || userLabelsDiv
instanceof String
)) {
890 this.user_attrs_
["labelsDiv"] = document
.getElementById(userLabelsDiv
);
892 if (!this.attr_("labelsDiv")) {
893 var divWidth
= this.attr_('labelsDivWidth');
895 "position": "absolute",
898 "width": divWidth
+ "px",
900 "left": (this.width_
- divWidth
- 2) + "px",
901 "background": "white",
903 "overflow": "hidden"};
904 Dygraph
.update(messagestyle
, this.attr_('labelsDivStyles'));
905 var div
= document
.createElement("div");
906 for (var name
in messagestyle
) {
907 if (messagestyle
.hasOwnProperty(name
)) {
908 div
.style
[name
] = messagestyle
[name
];
911 this.graphDiv
.appendChild(div
);
912 this.attrs_
.labelsDiv
= div
;
917 * Position the labels div so that its right edge is flush with the right edge
918 * of the charting area.
920 Dygraph
.prototype.positionLabelsDiv_
= function() {
921 // Don't touch a user-specified labelsDiv.
922 if (this.user_attrs_
.hasOwnProperty("labelsDiv")) return;
924 var area
= this.plotter_
.area
;
925 var div
= this.attr_("labelsDiv");
926 div
.style
.left
= area
.x
+ area
.w
- this.attr_("labelsDivWidth") - 1 + "px";
930 * Create the text box to adjust the averaging period
933 Dygraph
.prototype.createRollInterface_
= function() {
934 // Create a roller if one doesn't exist already.
936 this.roller_
= document
.createElement("input");
937 this.roller_
.type
= "text";
938 this.roller_
.style
.display
= "none";
939 this.graphDiv
.appendChild(this.roller_
);
942 var display
= this.attr_('showRoller') ? 'block' : 'none';
944 var textAttr
= { "position": "absolute",
946 "top": (this.plotter_
.area
.h
- 25) + "px",
947 "left": (this.plotter_
.area
.x
+ 1) + "px",
950 this.roller_
.size
= "2";
951 this.roller_
.value
= this.rollPeriod_
;
952 for (var name
in textAttr
) {
953 if (textAttr
.hasOwnProperty(name
)) {
954 this.roller_
.style
[name
] = textAttr
[name
];
959 this.roller_
.onchange
= function() { dygraph
.adjustRoll(dygraph
.roller_
.value
); };
962 // These functions are taken from MochiKit.Signal
963 Dygraph
.pageX
= function(e
) {
965 return (!e
.pageX
|| e
.pageX
< 0) ? 0 : e
.pageX
;
968 var b
= document
.body
;
970 (de
.scrollLeft
|| b
.scrollLeft
) -
971 (de
.clientLeft
|| 0);
975 Dygraph
.pageY
= function(e
) {
977 return (!e
.pageY
|| e
.pageY
< 0) ? 0 : e
.pageY
;
980 var b
= document
.body
;
982 (de
.scrollTop
|| b
.scrollTop
) -
987 Dygraph
.prototype.dragGetX_
= function(e
, context
) {
988 return Dygraph
.pageX(e
) - context
.px
991 Dygraph
.prototype.dragGetY_
= function(e
, context
) {
992 return Dygraph
.pageY(e
) - context
.py
995 // Called in response to an interaction model operation that
996 // should start the default panning behavior.
998 // It's used in the default callback for "mousedown" operations.
999 // Custom interaction model builders can use it to provide the default
1000 // panning behavior.
1002 Dygraph
.startPan
= function(event
, g
, context
) {
1003 context
.isPanning
= true;
1004 var xRange
= g
.xAxisRange();
1005 context
.dateRange
= xRange
[1] - xRange
[0];
1006 context
.initialLeftmostDate
= xRange
[0];
1007 context
.xUnitsPerPixel
= context
.dateRange
/ (g
.plotter_
.area
.w
- 1);
1009 // Record the range of each y-axis at the start of the drag.
1010 // If any axis has a valueRange or valueWindow, then we want a 2D pan.
1011 context
.is2DPan
= false;
1012 for (var i
= 0; i
< g
.axes_
.length
; i
++) {
1013 var axis
= g
.axes_
[i
];
1014 var yRange
= g
.yAxisRange(i
);
1015 // TODO(konigsberg): These values should be in |context|.
1016 // In log scale, initialTopValue, dragValueRange and unitsPerPixel are log scale.
1017 if (axis
.logscale
) {
1018 axis
.initialTopValue
= Dygraph
.log10(yRange
[1]);
1019 axis
.dragValueRange
= Dygraph
.log10(yRange
[1]) - Dygraph
.log10(yRange
[0]);
1021 axis
.initialTopValue
= yRange
[1];
1022 axis
.dragValueRange
= yRange
[1] - yRange
[0];
1024 axis
.unitsPerPixel
= axis
.dragValueRange
/ (g
.plotter_
.area
.h
- 1);
1026 // While calculating axes, set 2dpan.
1027 if (axis
.valueWindow
|| axis
.valueRange
) context
.is2DPan
= true;
1031 // Called in response to an interaction model operation that
1032 // responds to an event that pans the view.
1034 // It's used in the default callback for "mousemove" operations.
1035 // Custom interaction model builders can use it to provide the default
1036 // panning behavior.
1038 Dygraph
.movePan
= function(event
, g
, context
) {
1039 context
.dragEndX
= g
.dragGetX_(event
, context
);
1040 context
.dragEndY
= g
.dragGetY_(event
, context
);
1042 var minDate
= context
.initialLeftmostDate
-
1043 (context
.dragEndX
- context
.dragStartX
) * context
.xUnitsPerPixel
;
1044 var maxDate
= minDate
+ context
.dateRange
;
1045 g
.dateWindow_
= [minDate
, maxDate
];
1047 // y-axis scaling is automatic unless this is a full 2D pan.
1048 if (context
.is2DPan
) {
1049 // Adjust each axis appropriately.
1050 for (var i
= 0; i
< g
.axes_
.length
; i
++) {
1051 var axis
= g
.axes_
[i
];
1053 var pixelsDragged
= context
.dragEndY
- context
.dragStartY
;
1054 var unitsDragged
= pixelsDragged
* axis
.unitsPerPixel
;
1056 // In log scale, maxValue and minValue are the logs of those values.
1057 var maxValue
= axis
.initialTopValue
+ unitsDragged
;
1058 var minValue
= maxValue
- axis
.dragValueRange
;
1059 if (axis
.logscale
) {
1060 axis
.valueWindow
= [ Math
.pow(Dygraph
.LOG_SCALE
, minValue
),
1061 Math
.pow(Dygraph
.LOG_SCALE
, maxValue
) ];
1063 axis
.valueWindow
= [ minValue
, maxValue
];
1071 // Called in response to an interaction model operation that
1072 // responds to an event that ends panning.
1074 // It's used in the default callback for "mouseup" operations.
1075 // Custom interaction model builders can use it to provide the default
1076 // panning behavior.
1078 Dygraph
.endPan
= function(event
, g
, context
) {
1079 // TODO(konigsberg): Clear the context data from the axis.
1080 // TODO(konigsberg): mouseup should just delete the
1081 // context object, and mousedown should create a new one.
1082 context
.isPanning
= false;
1083 context
.is2DPan
= false;
1084 context
.initialLeftmostDate
= null;
1085 context
.dateRange
= null;
1086 context
.valueRange
= null;
1089 // Called in response to an interaction model operation that
1090 // responds to an event that starts zooming.
1092 // It's used in the default callback for "mousedown" operations.
1093 // Custom interaction model builders can use it to provide the default
1094 // zooming behavior.
1096 Dygraph
.startZoom
= function(event
, g
, context
) {
1097 context
.isZooming
= true;
1100 // Called in response to an interaction model operation that
1101 // responds to an event that defines zoom boundaries.
1103 // It's used in the default callback for "mousemove" operations.
1104 // Custom interaction model builders can use it to provide the default
1105 // zooming behavior.
1107 Dygraph
.moveZoom
= function(event
, g
, context
) {
1108 context
.dragEndX
= g
.dragGetX_(event
, context
);
1109 context
.dragEndY
= g
.dragGetY_(event
, context
);
1111 var xDelta
= Math
.abs(context
.dragStartX
- context
.dragEndX
);
1112 var yDelta
= Math
.abs(context
.dragStartY
- context
.dragEndY
);
1114 // drag direction threshold for y axis is twice as large as x axis
1115 context
.dragDirection
= (xDelta
< yDelta
/ 2) ? Dygraph
.VERTICAL
: Dygraph
.HORIZONTAL
;
1118 context
.dragDirection
,
1123 context
.prevDragDirection
,
1127 context
.prevEndX
= context
.dragEndX
;
1128 context
.prevEndY
= context
.dragEndY
;
1129 context
.prevDragDirection
= context
.dragDirection
;
1132 // Called in response to an interaction model operation that
1133 // responds to an event that performs a zoom based on previously defined
1136 // It's used in the default callback for "mouseup" operations.
1137 // Custom interaction model builders can use it to provide the default
1138 // zooming behavior.
1140 Dygraph
.endZoom
= function(event
, g
, context
) {
1141 context
.isZooming
= false;
1142 context
.dragEndX
= g
.dragGetX_(event
, context
);
1143 context
.dragEndY
= g
.dragGetY_(event
, context
);
1144 var regionWidth
= Math
.abs(context
.dragEndX
- context
.dragStartX
);
1145 var regionHeight
= Math
.abs(context
.dragEndY
- context
.dragStartY
);
1147 if (regionWidth
< 2 && regionHeight
< 2 &&
1148 g
.lastx_
!= undefined
&& g
.lastx_
!= -1) {
1149 // TODO(danvk): pass along more info about the points, e.g. 'x'
1150 if (g
.attr_('clickCallback') != null) {
1151 g
.attr_('clickCallback')(event
, g
.lastx_
, g
.selPoints_
);
1153 if (g
.attr_('pointClickCallback')) {
1154 // check if the click was on a particular point.
1155 var closestIdx
= -1;
1156 var closestDistance
= 0;
1157 for (var i
= 0; i
< g
.selPoints_
.length
; i
++) {
1158 var p
= g
.selPoints_
[i
];
1159 var distance
= Math
.pow(p
.canvasx
- context
.dragEndX
, 2) +
1160 Math
.pow(p
.canvasy
- context
.dragEndY
, 2);
1161 if (closestIdx
== -1 || distance
< closestDistance
) {
1162 closestDistance
= distance
;
1167 // Allow any click within two pixels of the dot.
1168 var radius
= g
.attr_('highlightCircleSize') + 2;
1169 if (closestDistance
<= 5 * 5) {
1170 g
.attr_('pointClickCallback')(event
, g
.selPoints_
[closestIdx
]);
1175 if (regionWidth
>= 10 && context
.dragDirection
== Dygraph
.HORIZONTAL
) {
1176 g
.doZoomX_(Math
.min(context
.dragStartX
, context
.dragEndX
),
1177 Math
.max(context
.dragStartX
, context
.dragEndX
));
1178 } else if (regionHeight
>= 10 && context
.dragDirection
== Dygraph
.VERTICAL
) {
1179 g
.doZoomY_(Math
.min(context
.dragStartY
, context
.dragEndY
),
1180 Math
.max(context
.dragStartY
, context
.dragEndY
));
1182 g
.canvas_
.getContext("2d").clearRect(0, 0,
1186 context
.dragStartX
= null;
1187 context
.dragStartY
= null;
1190 Dygraph
.defaultInteractionModel
= {
1191 // Track the beginning of drag events
1192 mousedown
: function(event
, g
, context
) {
1193 context
.initializeMouseDown(event
, g
, context
);
1195 if (event
.altKey
|| event
.shiftKey
) {
1196 Dygraph
.startPan(event
, g
, context
);
1198 Dygraph
.startZoom(event
, g
, context
);
1202 // Draw zoom rectangles when the mouse is down and the user moves around
1203 mousemove
: function(event
, g
, context
) {
1204 if (context
.isZooming
) {
1205 Dygraph
.moveZoom(event
, g
, context
);
1206 } else if (context
.isPanning
) {
1207 Dygraph
.movePan(event
, g
, context
);
1211 mouseup
: function(event
, g
, context
) {
1212 if (context
.isZooming
) {
1213 Dygraph
.endZoom(event
, g
, context
);
1214 } else if (context
.isPanning
) {
1215 Dygraph
.endPan(event
, g
, context
);
1219 // Temporarily cancel the dragging event when the mouse leaves the graph
1220 mouseout
: function(event
, g
, context
) {
1221 if (context
.isZooming
) {
1222 context
.dragEndX
= null;
1223 context
.dragEndY
= null;
1227 // Disable zooming out if panning.
1228 dblclick
: function(event
, g
, context
) {
1229 if (event
.altKey
|| event
.shiftKey
) {
1232 // TODO(konigsberg): replace g.doUnzoom()_ with something that is
1233 // friendlier to public use.
1238 Dygraph
.DEFAULT_ATTRS
.interactionModel
= Dygraph
.defaultInteractionModel
;
1241 * Set up all the mouse handlers needed to capture dragging behavior for zoom
1245 Dygraph
.prototype.createDragInterface_
= function() {
1247 // Tracks whether the mouse is down right now
1249 isPanning
: false, // is this drag part of a pan?
1250 is2DPan
: false, // if so, is that pan 1- or 2-dimensional?
1255 dragDirection
: null,
1258 prevDragDirection
: null,
1260 // The value on the left side of the graph when a pan operation starts.
1261 initialLeftmostDate
: null,
1263 // The number of units each pixel spans. (This won't be valid for log
1265 xUnitsPerPixel
: null,
1267 // TODO(danvk): update this comment
1268 // The range in second/value units that the viewport encompasses during a
1269 // panning operation.
1272 // Utility function to convert page-wide coordinates to canvas coords
1276 initializeMouseDown
: function(event
, g
, context
) {
1277 // prevents mouse drags from selecting page text.
1278 if (event
.preventDefault
) {
1279 event
.preventDefault(); // Firefox, Chrome, etc.
1281 event
.returnValue
= false; // IE
1282 event
.cancelBubble
= true;
1285 context
.px
= Dygraph
.findPosX(g
.canvas_
);
1286 context
.py
= Dygraph
.findPosY(g
.canvas_
);
1287 context
.dragStartX
= g
.dragGetX_(event
, context
);
1288 context
.dragStartY
= g
.dragGetY_(event
, context
);
1292 var interactionModel
= this.attr_("interactionModel");
1294 // Self is the graph.
1297 // Function that binds the graph and context to the handler.
1298 var bindHandler
= function(handler
) {
1299 return function(event
) {
1300 handler(event
, self
, context
);
1304 for (var eventName
in interactionModel
) {
1305 if (!interactionModel
.hasOwnProperty(eventName
)) continue;
1306 Dygraph
.addEvent(this.mouseEventElement_
, eventName
,
1307 bindHandler(interactionModel
[eventName
]));
1310 // If the user releases the mouse button during a drag, but not over the
1311 // canvas, then it doesn't count as a zooming action.
1312 Dygraph
.addEvent(document
, 'mouseup', function(event
) {
1313 if (context
.isZooming
|| context
.isPanning
) {
1314 context
.isZooming
= false;
1315 context
.dragStartX
= null;
1316 context
.dragStartY
= null;
1319 if (context
.isPanning
) {
1320 context
.isPanning
= false;
1321 context
.draggingDate
= null;
1322 context
.dateRange
= null;
1323 for (var i
= 0; i
< self
.axes_
.length
; i
++) {
1324 delete self
.axes_
[i
].draggingValue
;
1325 delete self
.axes_
[i
].dragValueRange
;
1333 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
1334 * up any previous zoom rectangles that were drawn. This could be optimized to
1335 * avoid extra redrawing, but it's tricky to avoid interactions with the status
1338 * @param {Number} direction the direction of the zoom rectangle. Acceptable
1339 * values are Dygraph.HORIZONTAL and Dygraph.VERTICAL.
1340 * @param {Number} startX The X position where the drag started, in canvas
1342 * @param {Number} endX The current X position of the drag, in canvas coords.
1343 * @param {Number} startY The Y position where the drag started, in canvas
1345 * @param {Number} endY The current Y position of the drag, in canvas coords.
1346 * @param {Number} prevDirection the value of direction on the previous call to
1347 * this function. Used to avoid excess redrawing
1348 * @param {Number} prevEndX The value of endX on the previous call to this
1349 * function. Used to avoid excess redrawing
1350 * @param {Number} prevEndY The value of endY on the previous call to this
1351 * function. Used to avoid excess redrawing
1354 Dygraph
.prototype.drawZoomRect_
= function(direction
, startX
, endX
, startY
,
1355 endY
, prevDirection
, prevEndX
,
1357 var ctx
= this.canvas_
.getContext("2d");
1359 // Clean up from the previous rect if necessary
1360 if (prevDirection
== Dygraph
.HORIZONTAL
) {
1361 ctx
.clearRect(Math
.min(startX
, prevEndX
), 0,
1362 Math
.abs(startX
- prevEndX
), this.height_
);
1363 } else if (prevDirection
== Dygraph
.VERTICAL
){
1364 ctx
.clearRect(0, Math
.min(startY
, prevEndY
),
1365 this.width_
, Math
.abs(startY
- prevEndY
));
1368 // Draw a light-grey rectangle to show the new viewing area
1369 if (direction
== Dygraph
.HORIZONTAL
) {
1370 if (endX
&& startX
) {
1371 ctx
.fillStyle
= "rgba(128,128,128,0.33)";
1372 ctx
.fillRect(Math
.min(startX
, endX
), 0,
1373 Math
.abs(endX
- startX
), this.height_
);
1376 if (direction
== Dygraph
.VERTICAL
) {
1377 if (endY
&& startY
) {
1378 ctx
.fillStyle
= "rgba(128,128,128,0.33)";
1379 ctx
.fillRect(0, Math
.min(startY
, endY
),
1380 this.width_
, Math
.abs(endY
- startY
));
1386 * Zoom to something containing [lowX, highX]. These are pixel coordinates in
1387 * the canvas. The exact zoom window may be slightly larger if there are no data
1388 * points near lowX or highX. Don't confuse this function with doZoomXDates,
1389 * which accepts dates that match the raw data. This function redraws the graph.
1391 * @param {Number} lowX The leftmost pixel value that should be visible.
1392 * @param {Number} highX The rightmost pixel value that should be visible.
1395 Dygraph
.prototype.doZoomX_
= function(lowX
, highX
) {
1396 // Find the earliest and latest dates contained in this canvasx range.
1397 // Convert the call to date ranges of the raw data.
1398 var minDate
= this.toDataXCoord(lowX
);
1399 var maxDate
= this.toDataXCoord(highX
);
1400 this.doZoomXDates_(minDate
, maxDate
);
1404 * Zoom to something containing [minDate, maxDate] values. Don't confuse this
1405 * method with doZoomX which accepts pixel coordinates. This function redraws
1408 * @param {Number} minDate The minimum date that should be visible.
1409 * @param {Number} maxDate The maximum date that should be visible.
1412 Dygraph
.prototype.doZoomXDates_
= function(minDate
, maxDate
) {
1413 this.dateWindow_
= [minDate
, maxDate
];
1415 if (this.attr_("zoomCallback")) {
1416 this.attr_("zoomCallback")(minDate
, maxDate
, this.yAxisRanges());
1421 * Zoom to something containing [lowY, highY]. These are pixel coordinates in
1422 * the canvas. This function redraws the graph.
1424 * @param {Number} lowY The topmost pixel value that should be visible.
1425 * @param {Number} highY The lowest pixel value that should be visible.
1428 Dygraph
.prototype.doZoomY_
= function(lowY
, highY
) {
1429 // Find the highest and lowest values in pixel range for each axis.
1430 // Note that lowY (in pixels) corresponds to the max Value (in data coords).
1431 // This is because pixels increase as you go down on the screen, whereas data
1432 // coordinates increase as you go up the screen.
1433 var valueRanges
= [];
1434 for (var i
= 0; i
< this.axes_
.length
; i
++) {
1435 var hi
= this.toDataYCoord(lowY
, i
);
1436 var low
= this.toDataYCoord(highY
, i
);
1437 this.axes_
[i
].valueWindow
= [low
, hi
];
1438 valueRanges
.push([low
, hi
]);
1442 if (this.attr_("zoomCallback")) {
1443 var xRange
= this.xAxisRange();
1444 this.attr_("zoomCallback")(xRange
[0], xRange
[1], this.yAxisRanges());
1449 * Reset the zoom to the original view coordinates. This is the same as
1450 * double-clicking on the graph.
1454 Dygraph
.prototype.doUnzoom_
= function() {
1456 if (this.dateWindow_
!= null) {
1458 this.dateWindow_
= null;
1461 for (var i
= 0; i
< this.axes_
.length
; i
++) {
1462 if (this.axes_
[i
].valueWindow
!= null) {
1464 delete this.axes_
[i
].valueWindow
;
1469 // Putting the drawing operation before the callback because it resets
1472 if (this.attr_("zoomCallback")) {
1473 var minDate
= this.rawData_
[0][0];
1474 var maxDate
= this.rawData_
[this.rawData_
.length
- 1][0];
1475 this.attr_("zoomCallback")(minDate
, maxDate
, this.yAxisRanges());
1481 * When the mouse moves in the canvas, display information about a nearby data
1482 * point and draw dots over those points in the data series. This function
1483 * takes care of cleanup of previously-drawn dots.
1484 * @param {Object} event The mousemove event from the browser.
1487 Dygraph
.prototype.mouseMove_
= function(event
) {
1488 var canvasx
= Dygraph
.pageX(event
) - Dygraph
.findPosX(this.mouseEventElement_
);
1489 var points
= this.layout_
.points
;
1491 // This prevents JS errors when mousing over the canvas before data loads.
1492 if (points
=== undefined
) return;
1497 // Loop through all the points and find the date nearest to our current
1499 var minDist
= 1e+100;
1501 for (var i
= 0; i
< points
.length
; i
++) {
1502 var point
= points
[i
];
1503 if (point
== null) continue;
1504 var dist
= Math
.abs(point
.canvasx
- canvasx
);
1505 if (dist
> minDist
) continue;
1509 if (idx
>= 0) lastx
= points
[idx
].xval
;
1511 // Extract the points we've selected
1512 this.selPoints_
= [];
1513 var l
= points
.length
;
1514 if (!this.attr_("stackedGraph")) {
1515 for (var i
= 0; i
< l
; i
++) {
1516 if (points
[i
].xval
== lastx
) {
1517 this.selPoints_
.push(points
[i
]);
1521 // Need to 'unstack' points starting from the bottom
1522 var cumulative_sum
= 0;
1523 for (var i
= l
- 1; i
>= 0; i
--) {
1524 if (points
[i
].xval
== lastx
) {
1525 var p
= {}; // Clone the point since we modify it
1526 for (var k
in points
[i
]) {
1527 p
[k
] = points
[i
][k
];
1529 p
.yval
-= cumulative_sum
;
1530 cumulative_sum
+= p
.yval
;
1531 this.selPoints_
.push(p
);
1534 this.selPoints_
.reverse();
1537 if (this.attr_("highlightCallback")) {
1538 var px
= this.lastx_
;
1539 if (px
!== null && lastx
!= px
) {
1540 // only fire if the selected point has changed.
1541 this.attr_("highlightCallback")(event
, lastx
, this.selPoints_
, this.idxToRow_(idx
));
1545 // Save last x position for callbacks.
1546 this.lastx_
= lastx
;
1548 this.updateSelection_();
1552 * Transforms layout_.points index into data row number.
1553 * @param int layout_.points index
1554 * @return int row number, or -1 if none could be found.
1557 Dygraph
.prototype.idxToRow_
= function(idx
) {
1558 if (idx
< 0) return -1;
1560 for (var i
in this.layout_
.datasets
) {
1561 if (idx
< this.layout_
.datasets
[i
].length
) {
1562 return this.boundaryIds_
[0][0]+idx
;
1564 idx
-= this.layout_
.datasets
[i
].length
;
1569 // TODO(danvk): rename this function to something like 'isNonZeroNan'.
1570 Dygraph
.isOK
= function(x
) {
1571 return x
&& !isNaN(x
);
1574 Dygraph
.prototype.generateLegendHTML_
= function(x
, sel_points
) {
1575 // If no points are selected, we display a default legend. Traditionally,
1576 // this has been blank. But a better default would be a conventional legend,
1577 // which provides essential information for a non-interactive chart.
1578 if (typeof(x
) === 'undefined') {
1579 if (this.attr_('legend') != 'always') return '';
1581 var sepLines
= this.attr_('labelsSeparateLines');
1582 var labels
= this.attr_('labels');
1584 for (var i
= 1; i
< labels
.length
; i
++) {
1585 var c
= new RGBColor(this.plotter_
.colors
[labels
[i
]]);
1586 if (i
> 1) html
+= (sepLines
? '<br/>' : ' ');
1587 html
+= "<b><font color='" + c
.toHex() + "'>—" + labels
[i
] +
1593 var displayDigits
= this.numXDigits_
+ this.numExtraDigits_
;
1594 var html
= this.attr_('xValueFormatter')(x
, displayDigits
) + ":";
1596 var fmtFunc
= this.attr_('yValueFormatter');
1597 var showZeros
= this.attr_("labelsShowZeroValues");
1598 var sepLines
= this.attr_("labelsSeparateLines");
1599 for (var i
= 0; i
< this.selPoints_
.length
; i
++) {
1600 var pt
= this.selPoints_
[i
];
1601 if (pt
.yval
== 0 && !showZeros
) continue;
1602 if (!Dygraph
.isOK(pt
.canvasy
)) continue;
1603 if (sepLines
) html
+= "<br/>";
1605 var c
= new RGBColor(this.plotter_
.colors
[pt
.name
]);
1606 var yval
= fmtFunc(pt
.yval
, displayDigits
);
1607 // TODO(danvk): use a template string here and make it an attribute.
1608 html
+= " <b><font color='" + c
.toHex() + "'>"
1609 + pt
.name
+ "</font></b>:"
1616 * Draw dots over the selectied points in the data series. This function
1617 * takes care of cleanup of previously-drawn dots.
1620 Dygraph
.prototype.updateSelection_
= function() {
1621 // Clear the previously drawn vertical, if there is one
1622 var ctx
= this.canvas_
.getContext("2d");
1623 if (this.previousVerticalX_
>= 0) {
1624 // Determine the maximum highlight circle size.
1625 var maxCircleSize
= 0;
1626 var labels
= this.attr_('labels');
1627 for (var i
= 1; i
< labels
.length
; i
++) {
1628 var r
= this.attr_('highlightCircleSize', labels
[i
]);
1629 if (r
> maxCircleSize
) maxCircleSize
= r
;
1631 var px
= this.previousVerticalX_
;
1632 ctx
.clearRect(px
- maxCircleSize
- 1, 0,
1633 2 * maxCircleSize
+ 2, this.height_
);
1636 if (this.selPoints_
.length
> 0) {
1637 // Set the status message to indicate the selected point(s)
1638 if (this.attr_('showLabelsOnHighlight')) {
1639 var html
= this.generateLegendHTML_(this.lastx_
, this.selPoints_
);
1640 this.attr_("labelsDiv").innerHTML
= html
;
1643 // Draw colored circles over the center of each selected point
1644 var canvasx
= this.selPoints_
[0].canvasx
;
1646 for (var i
= 0; i
< this.selPoints_
.length
; i
++) {
1647 var pt
= this.selPoints_
[i
];
1648 if (!Dygraph
.isOK(pt
.canvasy
)) continue;
1650 var circleSize
= this.attr_('highlightCircleSize', pt
.name
);
1652 ctx
.fillStyle
= this.plotter_
.colors
[pt
.name
];
1653 ctx
.arc(canvasx
, pt
.canvasy
, circleSize
, 0, 2 * Math
.PI
, false);
1658 this.previousVerticalX_
= canvasx
;
1663 * Set manually set selected dots, and display information about them
1664 * @param int row number that should by highlighted
1665 * false value clears the selection
1668 Dygraph
.prototype.setSelection
= function(row
) {
1669 // Extract the points we've selected
1670 this.selPoints_
= [];
1673 if (row
!== false) {
1674 row
= row
-this.boundaryIds_
[0][0];
1677 if (row
!== false && row
>= 0) {
1678 for (var i
in this.layout_
.datasets
) {
1679 if (row
< this.layout_
.datasets
[i
].length
) {
1680 var point
= this.layout_
.points
[pos
+row
];
1682 if (this.attr_("stackedGraph")) {
1683 point
= this.layout_
.unstackPointAtIndex(pos
+row
);
1686 this.selPoints_
.push(point
);
1688 pos
+= this.layout_
.datasets
[i
].length
;
1692 if (this.selPoints_
.length
) {
1693 this.lastx_
= this.selPoints_
[0].xval
;
1694 this.updateSelection_();
1697 this.clearSelection();
1703 * The mouse has left the canvas. Clear out whatever artifacts remain
1704 * @param {Object} event the mouseout event from the browser.
1707 Dygraph
.prototype.mouseOut_
= function(event
) {
1708 if (this.attr_("unhighlightCallback")) {
1709 this.attr_("unhighlightCallback")(event
);
1712 if (this.attr_("hideOverlayOnMouseOut")) {
1713 this.clearSelection();
1718 * Remove all selection from the canvas
1721 Dygraph
.prototype.clearSelection
= function() {
1722 // Get rid of the overlay data
1723 var ctx
= this.canvas_
.getContext("2d");
1724 ctx
.clearRect(0, 0, this.width_
, this.height_
);
1725 this.attr_('labelsDiv').innerHTML
= this.generateLegendHTML_();
1726 this.selPoints_
= [];
1731 * Returns the number of the currently selected row
1732 * @return int row number, of -1 if nothing is selected
1735 Dygraph
.prototype.getSelection
= function() {
1736 if (!this.selPoints_
|| this.selPoints_
.length
< 1) {
1740 for (var row
=0; row
<this.layout_
.points
.length
; row
++ ) {
1741 if (this.layout_
.points
[row
].x
== this.selPoints_
[0].x
) {
1742 return row
+ this.boundaryIds_
[0][0];
1748 Dygraph
.zeropad
= function(x
) {
1749 if (x
< 10) return "0" + x
; else return "" + x
;
1753 * Return a string version of the hours, minutes and seconds portion of a date.
1754 * @param {Number} date The JavaScript date (ms since epoch)
1755 * @return {String} A time of the form "HH:MM:SS"
1758 Dygraph
.hmsString_
= function(date
) {
1759 var zeropad
= Dygraph
.zeropad
;
1760 var d
= new Date(date
);
1761 if (d
.getSeconds()) {
1762 return zeropad(d
.getHours()) + ":" +
1763 zeropad(d
.getMinutes()) + ":" +
1764 zeropad(d
.getSeconds());
1766 return zeropad(d
.getHours()) + ":" + zeropad(d
.getMinutes());
1771 * Convert a JS date to a string appropriate to display on an axis that
1772 * is displaying values at the stated granularity.
1773 * @param {Date} date The date to format
1774 * @param {Number} granularity One of the Dygraph granularity constants
1775 * @return {String} The formatted date
1778 Dygraph
.dateAxisFormatter
= function(date
, granularity
) {
1779 if (granularity
>= Dygraph
.DECADAL
) {
1780 return date
.strftime('%Y');
1781 } else if (granularity
>= Dygraph
.MONTHLY
) {
1782 return date
.strftime('%b %y');
1784 var frac
= date
.getHours() * 3600 + date
.getMinutes() * 60 + date
.getSeconds() + date
.getMilliseconds();
1785 if (frac
== 0 || granularity
>= Dygraph
.DAILY
) {
1786 return new Date(date
.getTime() + 3600*1000).strftime('%d%b');
1788 return Dygraph
.hmsString_(date
.getTime());
1794 * Convert a JS date (millis since epoch) to YYYY/MM/DD
1795 * @param {Number} date The JavaScript date (ms since epoch)
1796 * @return {String} A date of the form "YYYY/MM/DD"
1799 Dygraph
.dateString_
= function(date
) {
1800 var zeropad
= Dygraph
.zeropad
;
1801 var d
= new Date(date
);
1804 var year
= "" + d
.getFullYear();
1805 // Get a 0 padded month string
1806 var month
= zeropad(d
.getMonth() + 1); //months are 0-offset, sigh
1807 // Get a 0 padded day string
1808 var day
= zeropad(d
.getDate());
1811 var frac
= d
.getHours() * 3600 + d
.getMinutes() * 60 + d
.getSeconds();
1812 if (frac
) ret
= " " + Dygraph
.hmsString_(date
);
1814 return year
+ "/" + month + "/" + day
+ ret
;
1818 * Fires when there's data available to be graphed.
1819 * @param {String} data Raw CSV data to be plotted
1822 Dygraph
.prototype.loadedEvent_
= function(data
) {
1823 this.rawData_
= this.parseCSV_(data
);
1827 Dygraph
.prototype.months
= ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
1828 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
1829 Dygraph
.prototype.quarters
= ["Jan", "Apr", "Jul", "Oct"];
1832 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
1835 Dygraph
.prototype.addXTicks_
= function() {
1836 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
1838 if (this.dateWindow_
) {
1839 range
= [this.dateWindow_
[0], this.dateWindow_
[1]];
1841 range
= [this.rawData_
[0][0], this.rawData_
[this.rawData_
.length
- 1][0]];
1844 var formatter
= this.attr_('xTicker');
1845 var ret
= formatter(range
[0], range
[1], this);
1848 // Note: numericTicks() returns a {ticks: [...], numDigits: yy} dictionary,
1849 // whereas dateTicker and user-defined tickers typically just return a ticks
1851 if (ret
.ticks
!== undefined
) {
1853 this.numXDigits_
= ret
.numDigits
;
1858 this.layout_
.updateOptions({xTicks
: xTicks
});
1861 // Time granularity enumeration
1862 Dygraph
.SECONDLY
= 0;
1863 Dygraph
.TWO_SECONDLY
= 1;
1864 Dygraph
.FIVE_SECONDLY
= 2;
1865 Dygraph
.TEN_SECONDLY
= 3;
1866 Dygraph
.THIRTY_SECONDLY
= 4;
1867 Dygraph
.MINUTELY
= 5;
1868 Dygraph
.TWO_MINUTELY
= 6;
1869 Dygraph
.FIVE_MINUTELY
= 7;
1870 Dygraph
.TEN_MINUTELY
= 8;
1871 Dygraph
.THIRTY_MINUTELY
= 9;
1872 Dygraph
.HOURLY
= 10;
1873 Dygraph
.TWO_HOURLY
= 11;
1874 Dygraph
.SIX_HOURLY
= 12;
1876 Dygraph
.WEEKLY
= 14;
1877 Dygraph
.MONTHLY
= 15;
1878 Dygraph
.QUARTERLY
= 16;
1879 Dygraph
.BIANNUAL
= 17;
1880 Dygraph
.ANNUAL
= 18;
1881 Dygraph
.DECADAL
= 19;
1882 Dygraph
.CENTENNIAL
= 20;
1883 Dygraph
.NUM_GRANULARITIES
= 21;
1885 Dygraph
.SHORT_SPACINGS
= [];
1886 Dygraph
.SHORT_SPACINGS
[Dygraph
.SECONDLY
] = 1000 * 1;
1887 Dygraph
.SHORT_SPACINGS
[Dygraph
.TWO_SECONDLY
] = 1000 * 2;
1888 Dygraph
.SHORT_SPACINGS
[Dygraph
.FIVE_SECONDLY
] = 1000 * 5;
1889 Dygraph
.SHORT_SPACINGS
[Dygraph
.TEN_SECONDLY
] = 1000 * 10;
1890 Dygraph
.SHORT_SPACINGS
[Dygraph
.THIRTY_SECONDLY
] = 1000 * 30;
1891 Dygraph
.SHORT_SPACINGS
[Dygraph
.MINUTELY
] = 1000 * 60;
1892 Dygraph
.SHORT_SPACINGS
[Dygraph
.TWO_MINUTELY
] = 1000 * 60 * 2;
1893 Dygraph
.SHORT_SPACINGS
[Dygraph
.FIVE_MINUTELY
] = 1000 * 60 * 5;
1894 Dygraph
.SHORT_SPACINGS
[Dygraph
.TEN_MINUTELY
] = 1000 * 60 * 10;
1895 Dygraph
.SHORT_SPACINGS
[Dygraph
.THIRTY_MINUTELY
] = 1000 * 60 * 30;
1896 Dygraph
.SHORT_SPACINGS
[Dygraph
.HOURLY
] = 1000 * 3600;
1897 Dygraph
.SHORT_SPACINGS
[Dygraph
.TWO_HOURLY
] = 1000 * 3600 * 2;
1898 Dygraph
.SHORT_SPACINGS
[Dygraph
.SIX_HOURLY
] = 1000 * 3600 * 6;
1899 Dygraph
.SHORT_SPACINGS
[Dygraph
.DAILY
] = 1000 * 86400;
1900 Dygraph
.SHORT_SPACINGS
[Dygraph
.WEEKLY
] = 1000 * 604800;
1904 // If we used this time granularity, how many ticks would there be?
1905 // This is only an approximation, but it's generally good enough.
1907 Dygraph
.prototype.NumXTicks
= function(start_time
, end_time
, granularity
) {
1908 if (granularity
< Dygraph
.MONTHLY
) {
1909 // Generate one tick mark for every fixed interval of time.
1910 var spacing
= Dygraph
.SHORT_SPACINGS
[granularity
];
1911 return Math
.floor(0.5 + 1.0 * (end_time
- start_time
) / spacing
);
1913 var year_mod
= 1; // e.g. to only print one point every 10 years.
1914 var num_months
= 12;
1915 if (granularity
== Dygraph
.QUARTERLY
) num_months
= 3;
1916 if (granularity
== Dygraph
.BIANNUAL
) num_months
= 2;
1917 if (granularity
== Dygraph
.ANNUAL
) num_months
= 1;
1918 if (granularity
== Dygraph
.DECADAL
) { num_months
= 1; year_mod
= 10; }
1919 if (granularity
== Dygraph
.CENTENNIAL
) { num_months
= 1; year_mod
= 100; }
1921 var msInYear
= 365.2524 * 24 * 3600 * 1000;
1922 var num_years
= 1.0 * (end_time
- start_time
) / msInYear
;
1923 return Math
.floor(0.5 + 1.0 * num_years
* num_months
/ year_mod
);
1929 // Construct an x-axis of nicely-formatted times on meaningful boundaries
1930 // (e.g. 'Jan 09' rather than 'Jan 22, 2009').
1932 // Returns an array containing {v: millis, label: label} dictionaries.
1934 Dygraph
.prototype.GetXAxis
= function(start_time
, end_time
, granularity
) {
1935 var formatter
= this.attr_("xAxisLabelFormatter");
1937 if (granularity
< Dygraph
.MONTHLY
) {
1938 // Generate one tick mark for every fixed interval of time.
1939 var spacing
= Dygraph
.SHORT_SPACINGS
[granularity
];
1940 var format
= '%d%b'; // e.g. "1Jan"
1942 // Find a time less than start_time which occurs on a "nice" time boundary
1943 // for this granularity.
1944 var g
= spacing
/ 1000;
1945 var d
= new Date(start_time
);
1946 if (g
<= 60) { // seconds
1947 var x
= d
.getSeconds(); d
.setSeconds(x
- x
% g
);
1951 if (g
<= 60) { // minutes
1952 var x
= d
.getMinutes(); d
.setMinutes(x
- x
% g
);
1957 if (g
<= 24) { // days
1958 var x
= d
.getHours(); d
.setHours(x
- x
% g
);
1963 if (g
== 7) { // one week
1964 d
.setDate(d
.getDate() - d
.getDay());
1969 start_time
= d
.getTime();
1971 for (var t
= start_time
; t
<= end_time
; t
+= spacing
) {
1972 ticks
.push({ v
:t
, label
: formatter(new Date(t
), granularity
) });
1975 // Display a tick mark on the first of a set of months of each year.
1976 // Years get a tick mark iff y % year_mod == 0. This is useful for
1977 // displaying a tick mark once every 10 years, say, on long time scales.
1979 var year_mod
= 1; // e.g. to only print one point every 10 years.
1981 if (granularity
== Dygraph
.MONTHLY
) {
1982 months
= [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
1983 } else if (granularity
== Dygraph
.QUARTERLY
) {
1984 months
= [ 0, 3, 6, 9 ];
1985 } else if (granularity
== Dygraph
.BIANNUAL
) {
1987 } else if (granularity
== Dygraph
.ANNUAL
) {
1989 } else if (granularity
== Dygraph
.DECADAL
) {
1992 } else if (granularity
== Dygraph
.CENTENNIAL
) {
1996 this.warn("Span of dates is too long");
1999 var start_year
= new Date(start_time
).getFullYear();
2000 var end_year
= new Date(end_time
).getFullYear();
2001 var zeropad
= Dygraph
.zeropad
;
2002 for (var i
= start_year
; i
<= end_year
; i
++) {
2003 if (i
% year_mod
!= 0) continue;
2004 for (var j
= 0; j
< months
.length
; j
++) {
2005 var date_str
= i
+ "/" + zeropad(1 + months[j]) + "/01";
2006 var t
= Date
.parse(date_str
);
2007 if (t
< start_time
|| t
> end_time
) continue;
2008 ticks
.push({ v
:t
, label
: formatter(new Date(t
), granularity
) });
2018 * Add ticks to the x-axis based on a date range.
2019 * @param {Number} startDate Start of the date window (millis since epoch)
2020 * @param {Number} endDate End of the date window (millis since epoch)
2021 * @return {Array.<Object>} Array of {label, value} tuples.
2024 Dygraph
.dateTicker
= function(startDate
, endDate
, self
) {
2026 for (var i
= 0; i
< Dygraph
.NUM_GRANULARITIES
; i
++) {
2027 var num_ticks
= self
.NumXTicks(startDate
, endDate
, i
);
2028 if (self
.width_
/ num_ticks
>= self
.attr_('pixelsPerXLabel')) {
2035 return self
.GetXAxis(startDate
, endDate
, chosen
);
2037 // TODO(danvk): signal error.
2041 // This is a list of human-friendly values at which to show tick marks on a log
2042 // scale. It is k * 10^n, where k=1..9 and n=-39..+39, so:
2043 // ..., 1, 2, 3, 4, 5, ..., 9, 10, 20, 30, ..., 90, 100, 200, 300, ...
2044 // NOTE: this assumes that Dygraph.LOG_SCALE = 10.
2045 Dygraph
.PREFERRED_LOG_TICK_VALUES
= function() {
2047 for (var power
= -39; power
<= 39; power
++) {
2048 var range
= Math
.pow(10, power
);
2049 for (var mult
= 1; mult
<= 9; mult
++) {
2050 var val
= range
* mult
;
2057 // val is the value to search for
2058 // arry is the value over which to search
2059 // if abs > 0, find the lowest entry greater than val
2060 // if abs < 0, find the highest entry less than val
2061 // if abs == 0, find the entry that equals val.
2062 // Currently does not work when val is outside the range of arry's values.
2063 Dygraph
.binarySearch
= function(val
, arry
, abs
, low
, high
) {
2064 if (low
== null || high
== null) {
2066 high
= arry
.length
- 1;
2074 var validIndex
= function(idx
) {
2075 return idx
>= 0 && idx
< arry
.length
;
2077 var mid
= parseInt((low
+ high
) / 2);
2078 var element
= arry
[mid
];
2079 if (element
== val
) {
2082 if (element
> val
) {
2084 // Accept if element > val, but also if prior element < val.
2086 if (validIndex(idx
) && arry
[idx
] < val
) {
2090 return Dygraph
.binarySearch(val
, arry
, abs
, low
, mid
- 1);
2092 if (element
< val
) {
2094 // Accept if element < val, but also if prior element > val.
2096 if (validIndex(idx
) && arry
[idx
] > val
) {
2100 return Dygraph
.binarySearch(val
, arry
, abs
, mid
+ 1, high
);
2105 * Determine the number of significant figures in a Number up to the specified
2106 * precision. Note that there is no way to determine if a trailing '0' is
2107 * significant or not, so by convention we return 1 for all of the following
2108 * inputs: 1, 1.0, 1.00, 1.000 etc.
2109 * @param {Number} x The input value.
2110 * @param {Number} opt_maxPrecision Optional maximum precision to consider.
2111 * Default and maximum allowed value is 13.
2112 * @return {Number} The number of significant figures which is >= 1.
2114 Dygraph
.significantFigures
= function(x
, opt_maxPrecision
) {
2115 var precision
= Math
.max(opt_maxPrecision
|| 13, 13);
2117 // Convert the number to its exponential notation form and work backwards,
2118 // ignoring the 'e+xx' bit. This may seem like a hack, but doing a loop and
2119 // dividing by 10 leads to roundoff errors. By using toExponential(), we let
2120 // the JavaScript interpreter handle the low level bits of the Number for us.
2121 var s
= x
.toExponential(precision
);
2122 var ePos
= s
.lastIndexOf('e'); // -1 case handled by return below.
2124 for (var i
= ePos
- 1; i
>= 0; i
--) {
2126 // Got to the decimal place. We'll call this 1 digit of precision because
2127 // we can't know for sure how many trailing 0s are significant.
2129 } else if (s
[i
] != '0') {
2130 // Found the first non-zero digit. Return the number of characters
2131 // except for the '.'.
2132 return i
; // This is i - 1 + 1 (-1 is for '.', +1 is for 0 based index).
2136 // Occurs if toExponential() doesn't return a string containing 'e', which
2137 // should never happen.
2142 * Add ticks when the x axis has numbers on it (instead of dates)
2143 * TODO(konigsberg): Update comment.
2145 * @param {Number} minV minimum value
2146 * @param {Number} maxV maximum value
2148 * @param {function} attribute accessor function.
2149 * @return {Array.<Object>} Array of {label, value} tuples.
2152 Dygraph
.numericTicks
= function(minV
, maxV
, self
, axis_props
, vals
) {
2153 var attr
= function(k
) {
2154 if (axis_props
&& axis_props
.hasOwnProperty(k
)) return axis_props
[k
];
2155 return self
.attr_(k
);
2160 for (var i
= 0; i
< vals
.length
; i
++) {
2161 ticks
.push({v
: vals
[i
]});
2164 if (axis_props
&& attr("logscale")) {
2165 var pixelsPerTick
= attr('pixelsPerYLabel');
2166 // NOTE(konigsberg): Dan, should self.height_ be self.plotter_.area.h?
2167 var nTicks
= Math
.floor(self
.height_
/ pixelsPerTick
);
2168 var minIdx
= Dygraph
.binarySearch(minV
, Dygraph
.PREFERRED_LOG_TICK_VALUES
, 1);
2169 var maxIdx
= Dygraph
.binarySearch(maxV
, Dygraph
.PREFERRED_LOG_TICK_VALUES
, -1);
2174 maxIdx
= Dygraph
.PREFERRED_LOG_TICK_VALUES
.length
- 1;
2176 // Count the number of tick values would appear, if we can get at least
2177 // nTicks / 4 accept them
.
2178 var lastDisplayed
= null;
2179 if (maxIdx
- minIdx
>= nTicks
/ 4) {
2180 var axisId
= axis_props
.yAxisId
;
2181 for (var idx
= maxIdx
; idx
>= minIdx
; idx
--) {
2182 var tickValue
= Dygraph
.PREFERRED_LOG_TICK_VALUES
[idx
];
2183 var domCoord
= axis_props
.g
.toDomYCoord(tickValue
, axisId
);
2184 var tick
= { v
: tickValue
};
2185 if (lastDisplayed
== null) {
2187 tickValue
: tickValue
,
2191 if (domCoord
- lastDisplayed
.domCoord
>= pixelsPerTick
) {
2193 tickValue
: tickValue
,
2202 // Since we went in backwards order.
2207 // ticks.length won't be 0 if the log scale function finds values to insert.
2208 if (ticks
.length
== 0) {
2210 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
2211 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks
).
2212 // The first spacing greater than pixelsPerYLabel is what we use.
2213 // TODO(danvk): version that works on a log scale.
2214 if (attr("labelsKMG2")) {
2215 var mults
= [1, 2, 4, 8];
2217 var mults
= [1, 2, 5];
2219 var scale
, low_val
, high_val
, nTicks
;
2220 // TODO(danvk): make it possible to set this for x- and y-axes independently.
2221 var pixelsPerTick
= attr('pixelsPerYLabel');
2222 for (var i
= -10; i
< 50; i
++) {
2223 if (attr("labelsKMG2")) {
2224 var base_scale
= Math
.pow(16, i
);
2226 var base_scale
= Math
.pow(10, i
);
2228 for (var j
= 0; j
< mults
.length
; j
++) {
2229 scale
= base_scale
* mults
[j
];
2230 low_val
= Math
.floor(minV
/ scale
) * scale
;
2231 high_val
= Math
.ceil(maxV
/ scale
) * scale
;
2232 nTicks
= Math
.abs(high_val
- low_val
) / scale
;
2233 var spacing
= self
.height_
/ nTicks
;
2234 // wish I could break out of both loops at once...
2235 if (spacing
> pixelsPerTick
) break;
2237 if (spacing
> pixelsPerTick
) break;
2240 // Construct the set of ticks.
2241 // Allow reverse y-axis if it's explicitly requested.
2242 if (low_val
> high_val
) scale
*= -1;
2243 for (var i
= 0; i
< nTicks
; i
++) {
2244 var tickV
= low_val
+ i
* scale
;
2245 ticks
.push( {v
: tickV
} );
2250 // Add formatted labels to the ticks.
2253 if (attr("labelsKMB")) {
2255 k_labels
= [ "K", "M", "B", "T" ];
2257 if (attr("labelsKMG2")) {
2258 if (k
) self
.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
2260 k_labels
= [ "k", "M", "G", "T" ];
2262 var formatter
= attr('yAxisLabelFormatter') ?
2263 attr('yAxisLabelFormatter') : attr('yValueFormatter');
2265 // Determine the number of decimal places needed for the labels below by
2266 // taking the maximum number of significant figures for any label. We must
2267 // take the max because we can't tell if trailing 0s are significant.
2269 for (var i
= 0; i
< ticks
.length
; i
++) {
2270 numDigits
= Math
.max(Dygraph
.significantFigures(ticks
[i
].v
), numDigits
);
2273 // Add labels to the ticks.
2274 for (var i
= 0; i
< ticks
.length
; i
++) {
2275 if (ticks
[i
].label
!== undefined
) continue; // Use current label.
2276 var tickV
= ticks
[i
].v
;
2277 var absTickV
= Math
.abs(tickV
);
2278 var label
= (formatter
!== undefined
) ?
2279 formatter(tickV
, numDigits
) : tickV
.toPrecision(numDigits
);
2280 if (k_labels
.length
> 0) {
2281 // Round up to an appropriate unit.
2283 for (var j
= 3; j
>= 0; j
--, n
/= k
) {
2284 if (absTickV
>= n
) {
2285 label
= formatter(tickV
/ n
, numDigits
) + k_labels
[j
];
2290 ticks
[i
].label
= label
;
2293 return {ticks
: ticks
, numDigits
: numDigits
};
2296 // Computes the range of the data series (including confidence intervals).
2297 // series is either [ [x1, y1], [x2, y2], ... ] or
2298 // [ [x1, [y1, dev_low, dev_high]], [x2, [y2, dev_low, dev_high]], ...
2299 // Returns [low, high]
2300 Dygraph
.prototype.extremeValues_
= function(series
) {
2301 var minY
= null, maxY
= null;
2303 var bars
= this.attr_("errorBars") || this.attr_("customBars");
2305 // With custom bars, maxY is the max of the high values.
2306 for (var j
= 0; j
< series
.length
; j
++) {
2307 var y
= series
[j
][1][0];
2309 var low
= y
- series
[j
][1][1];
2310 var high
= y
+ series
[j
][1][2];
2311 if (low
> y
) low
= y
; // this can happen with custom bars,
2312 if (high
< y
) high
= y
; // e.g. in tests/custom-bars
.html
2313 if (maxY
== null || high
> maxY
) {
2316 if (minY
== null || low
< minY
) {
2321 for (var j
= 0; j
< series
.length
; j
++) {
2322 var y
= series
[j
][1];
2323 if (y
=== null || isNaN(y
)) continue;
2324 if (maxY
== null || y
> maxY
) {
2327 if (minY
== null || y
< minY
) {
2333 return [minY
, maxY
];
2337 * This function is called once when the chart's data is changed or the options
2338 * dictionary is updated. It is _not_ called when the user pans or zooms. The
2339 * idea is that values derived from the chart's data can be computed here,
2340 * rather than every time the chart is drawn. This includes things like the
2341 * number of axes, rolling averages, etc.
2343 Dygraph
.prototype.predraw_
= function() {
2344 // TODO(danvk): move more computations out of drawGraph_ and into here.
2345 this.computeYAxes_();
2347 // Create a new plotter.
2348 if (this.plotter_
) this.plotter_
.clear();
2349 this.plotter_
= new DygraphCanvasRenderer(this,
2350 this.hidden_
, this.layout_
,
2351 this.renderOptions_
);
2353 // The roller sits in the bottom left corner of the chart. We don't know where
2354 // this will be until the options are available, so it's positioned here.
2355 this.createRollInterface_();
2357 // Same thing applies for the labelsDiv. It's right edge should be flush with
2358 // the right edge of the charting area (which may not be the same as the right
2359 // edge of the div, if we have two y-axes.
2360 this.positionLabelsDiv_();
2362 // If the data or options have changed, then we'd better redraw.
2367 * Update the graph with new data. This method is called when the viewing area
2368 * has changed. If the underlying data or options have changed, predraw_ will
2369 * be called before drawGraph_ is called.
2372 Dygraph
.prototype.drawGraph_
= function() {
2373 var data
= this.rawData_
;
2375 // This is used to set the second parameter to drawCallback, below.
2376 var is_initial_draw
= this.is_initial_draw_
;
2377 this.is_initial_draw_
= false;
2379 var minY
= null, maxY
= null;
2380 this.layout_
.removeAllDatasets();
2382 this.attrs_
['pointSize'] = 0.5 * this.attr_('highlightCircleSize');
2384 // Loop over the fields (series). Go from the last to the first,
2385 // because if they're stacked that's how we accumulate the values.
2387 var cumulative_y
= []; // For stacked series.
2390 var extremes
= {}; // series name -> [low, high]
2392 // Loop over all fields and create datasets
2393 for (var i
= data
[0].length
- 1; i
>= 1; i
--) {
2394 if (!this.visibility()[i
- 1]) continue;
2396 var seriesName
= this.attr_("labels")[i
];
2397 var connectSeparatedPoints
= this.attr_('connectSeparatedPoints', i
);
2398 var logScale
= this.attr_('logscale', i
);
2401 for (var j
= 0; j
< data
.length
; j
++) {
2402 var date
= data
[j
][0];
2403 var point
= data
[j
][i
];
2405 // On the log scale, points less than zero do not exist.
2406 // This will create a gap in the chart. Note that this ignores
2407 // connectSeparatedPoints.
2411 series
.push([date
, point
]);
2413 if (point
!= null || !connectSeparatedPoints
) {
2414 series
.push([date
, point
]);
2419 // TODO(danvk): move this into predraw_. It's insane to do it here.
2420 series
= this.rollingAverage(series
, this.rollPeriod_
);
2422 // Prune down to the desired range, if necessary (for zooming)
2423 // Because there can be lines going to points outside of the visible area,
2424 // we actually prune to visible points, plus one on either side.
2425 var bars
= this.attr_("errorBars") || this.attr_("customBars");
2426 if (this.dateWindow_
) {
2427 var low
= this.dateWindow_
[0];
2428 var high
= this.dateWindow_
[1];
2430 // TODO(danvk): do binary search instead of linear search.
2431 // TODO(danvk): pass firstIdx and lastIdx directly to the renderer.
2432 var firstIdx
= null, lastIdx
= null;
2433 for (var k
= 0; k
< series
.length
; k
++) {
2434 if (series
[k
][0] >= low
&& firstIdx
=== null) {
2437 if (series
[k
][0] <= high
) {
2441 if (firstIdx
=== null) firstIdx
= 0;
2442 if (firstIdx
> 0) firstIdx
--;
2443 if (lastIdx
=== null) lastIdx
= series
.length
- 1;
2444 if (lastIdx
< series
.length
- 1) lastIdx
++;
2445 this.boundaryIds_
[i
-1] = [firstIdx
, lastIdx
];
2446 for (var k
= firstIdx
; k
<= lastIdx
; k
++) {
2447 pruned
.push(series
[k
]);
2451 this.boundaryIds_
[i
-1] = [0, series
.length
-1];
2454 var seriesExtremes
= this.extremeValues_(series
);
2457 for (var j
=0; j
<series
.length
; j
++) {
2458 val
= [series
[j
][0], series
[j
][1][0], series
[j
][1][1], series
[j
][1][2]];
2461 } else if (this.attr_("stackedGraph")) {
2462 var l
= series
.length
;
2464 for (var j
= 0; j
< l
; j
++) {
2465 // If one data set has a NaN, let all subsequent stacked
2466 // sets inherit the NaN -- only start at 0 for the first set.
2467 var x
= series
[j
][0];
2468 if (cumulative_y
[x
] === undefined
) {
2469 cumulative_y
[x
] = 0;
2472 actual_y
= series
[j
][1];
2473 cumulative_y
[x
] += actual_y
;
2475 series
[j
] = [x
, cumulative_y
[x
]]
2477 if (cumulative_y
[x
] > seriesExtremes
[1]) {
2478 seriesExtremes
[1] = cumulative_y
[x
];
2480 if (cumulative_y
[x
] < seriesExtremes
[0]) {
2481 seriesExtremes
[0] = cumulative_y
[x
];
2485 extremes
[seriesName
] = seriesExtremes
;
2487 datasets
[i
] = series
;
2490 for (var i
= 1; i
< datasets
.length
; i
++) {
2491 if (!this.visibility()[i
- 1]) continue;
2492 this.layout_
.addDataset(this.attr_("labels")[i
], datasets
[i
]);
2495 this.computeYAxisRanges_(extremes
);
2496 this.layout_
.updateOptions( { yAxes
: this.axes_
,
2497 seriesToAxisMap
: this.seriesToAxisMap_
2502 // Tell PlotKit to use this new data and render itself
2503 this.layout_
.updateOptions({dateWindow
: this.dateWindow_
});
2504 this.layout_
.evaluateWithError();
2505 this.plotter_
.clear();
2506 this.plotter_
.render();
2507 this.canvas_
.getContext('2d').clearRect(0, 0, this.canvas_
.width
,
2508 this.canvas_
.height
);
2510 if (is_initial_draw
) {
2511 // Generate a static legend before any particular point is selected.
2512 this.attr_('labelsDiv').innerHTML
= this.generateLegendHTML_();
2515 if (this.attr_("drawCallback") !== null) {
2516 this.attr_("drawCallback")(this, is_initial_draw
);
2521 * Determine properties of the y-axes which are independent of the data
2522 * currently being displayed. This includes things like the number of axes and
2523 * the style of the axes. It does not include the range of each axis and its
2525 * This fills in this.axes_ and this.seriesToAxisMap_.
2526 * axes_ = [ { options } ]
2527 * seriesToAxisMap_ = { seriesName: 0, seriesName2: 1, ... }
2528 * indices are into the axes_ array.
2530 Dygraph
.prototype.computeYAxes_
= function() {
2531 this.axes_
= [{ yAxisId
: 0, g
: this }]; // always have at least one y-axis.
2532 this.seriesToAxisMap_
= {};
2534 // Get a list of series names.
2535 var labels
= this.attr_("labels");
2537 for (var i
= 1; i
< labels
.length
; i
++) series
[labels
[i
]] = (i
- 1);
2539 // all options which could be applied per-axis:
2547 'axisLabelFontSize',
2552 // Copy global axis options over to the first axis.
2553 for (var i
= 0; i
< axisOptions
.length
; i
++) {
2554 var k
= axisOptions
[i
];
2555 var v
= this.attr_(k
);
2556 if (v
) this.axes_
[0][k
] = v
;
2559 // Go through once and add all the axes.
2560 for (var seriesName
in series
) {
2561 if (!series
.hasOwnProperty(seriesName
)) continue;
2562 var axis
= this.attr_("axis", seriesName
);
2564 this.seriesToAxisMap_
[seriesName
] = 0;
2567 if (typeof(axis
) == 'object') {
2568 // Add a new axis, making a copy of its per-axis options.
2570 Dygraph
.update(opts
, this.axes_
[0]);
2571 Dygraph
.update(opts
, { valueRange
: null }); // shouldn't inherit this.
2572 var yAxisId
= this.axes_
.length
;
2573 opts
.yAxisId
= yAxisId
;
2575 Dygraph
.update(opts
, axis
);
2576 this.axes_
.push(opts
);
2577 this.seriesToAxisMap_
[seriesName
] = yAxisId
;
2581 // Go through one more time and assign series to an axis defined by another
2582 // series, e.g. { 'Y1: { axis: {} }, 'Y2': { axis: 'Y1' } }
2583 for (var seriesName
in series
) {
2584 if (!series
.hasOwnProperty(seriesName
)) continue;
2585 var axis
= this.attr_("axis", seriesName
);
2586 if (typeof(axis
) == 'string') {
2587 if (!this.seriesToAxisMap_
.hasOwnProperty(axis
)) {
2588 this.error("Series " + seriesName
+ " wants to share a y-axis with " +
2589 "series " + axis
+ ", which does not define its own axis.");
2592 var idx
= this.seriesToAxisMap_
[axis
];
2593 this.seriesToAxisMap_
[seriesName
] = idx
;
2597 // Now we remove series from seriesToAxisMap_ which are not visible. We do
2598 // this last so that hiding the first series doesn't destroy the axis
2599 // properties of the primary axis.
2600 var seriesToAxisFiltered
= {};
2601 var vis
= this.visibility();
2602 for (var i
= 1; i
< labels
.length
; i
++) {
2604 if (vis
[i
- 1]) seriesToAxisFiltered
[s
] = this.seriesToAxisMap_
[s
];
2606 this.seriesToAxisMap_
= seriesToAxisFiltered
;
2610 * Returns the number of y-axes on the chart.
2611 * @return {Number} the number of axes.
2613 Dygraph
.prototype.numAxes
= function() {
2615 for (var series
in this.seriesToAxisMap_
) {
2616 if (!this.seriesToAxisMap_
.hasOwnProperty(series
)) continue;
2617 var idx
= this.seriesToAxisMap_
[series
];
2618 if (idx
> last_axis
) last_axis
= idx
;
2620 return 1 + last_axis
;
2624 * Determine the value range and tick marks for each axis.
2625 * @param {Object} extremes A mapping from seriesName -> [low, high]
2626 * This fills in the valueRange and ticks fields in each entry of this.axes_.
2628 Dygraph
.prototype.computeYAxisRanges_
= function(extremes
) {
2629 // Build a map from axis number -> [list of series names]
2630 var seriesForAxis
= [];
2631 for (var series
in this.seriesToAxisMap_
) {
2632 if (!this.seriesToAxisMap_
.hasOwnProperty(series
)) continue;
2633 var idx
= this.seriesToAxisMap_
[series
];
2634 while (seriesForAxis
.length
<= idx
) seriesForAxis
.push([]);
2635 seriesForAxis
[idx
].push(series
);
2638 // Compute extreme values, a span and tick marks for each axis.
2639 for (var i
= 0; i
< this.axes_
.length
; i
++) {
2640 var axis
= this.axes_
[i
];
2641 if (axis
.valueWindow
) {
2642 // This is only set if the user has zoomed on the y-axis. It is never set
2643 // by a user. It takes precedence over axis.valueRange because, if you set
2644 // valueRange, you'd still expect to be able to pan.
2645 axis
.computedValueRange
= [axis
.valueWindow
[0], axis
.valueWindow
[1]];
2646 } else if (axis
.valueRange
) {
2647 // This is a user-set value range for this axis.
2648 axis
.computedValueRange
= [axis
.valueRange
[0], axis
.valueRange
[1]];
2650 // Calculate the extremes of extremes.
2651 var series
= seriesForAxis
[i
];
2652 var minY
= Infinity
; // extremes[series[0]][0];
2653 var maxY
= -Infinity
; // extremes[series[0]][1];
2654 for (var j
= 0; j
< series
.length
; j
++) {
2655 minY
= Math
.min(extremes
[series
[j
]][0], minY
);
2656 maxY
= Math
.max(extremes
[series
[j
]][1], maxY
);
2658 if (axis
.includeZero
&& minY
> 0) minY
= 0;
2660 // Add some padding and round up to an integer to be human-friendly.
2661 var span
= maxY
- minY
;
2662 // special case: if we have no sense of scale, use +/-10% of the sole value
.
2663 if (span
== 0) { span
= maxY
; }
2667 if (axis
.logscale
) {
2668 var maxAxisY
= maxY
+ 0.1 * span
;
2669 var minAxisY
= minY
;
2671 var maxAxisY
= maxY
+ 0.1 * span
;
2672 var minAxisY
= minY
- 0.1 * span
;
2674 // Try to include zero and make it minAxisY (or maxAxisY) if it makes sense.
2675 if (!this.attr_("avoidMinZero")) {
2676 if (minAxisY
< 0 && minY
>= 0) minAxisY
= 0;
2677 if (maxAxisY
> 0 && maxY
<= 0) maxAxisY
= 0;
2680 if (this.attr_("includeZero")) {
2681 if (maxY
< 0) maxAxisY
= 0;
2682 if (minY
> 0) minAxisY
= 0;
2686 axis
.computedValueRange
= [minAxisY
, maxAxisY
];
2689 // Add ticks. By default, all axes inherit the tick positions of the
2690 // primary axis. However, if an axis is specifically marked as having
2691 // independent ticks, then that is permissible as well.
2692 if (i
== 0 || axis
.independentTicks
) {
2694 Dygraph
.numericTicks(axis
.computedValueRange
[0],
2695 axis
.computedValueRange
[1],
2698 axis
.ticks
= ret
.ticks
;
2699 this.numYDigits_
= ret
.numDigits
;
2701 var p_axis
= this.axes_
[0];
2702 var p_ticks
= p_axis
.ticks
;
2703 var p_scale
= p_axis
.computedValueRange
[1] - p_axis
.computedValueRange
[0];
2704 var scale
= axis
.computedValueRange
[1] - axis
.computedValueRange
[0];
2705 var tick_values
= [];
2706 for (var i
= 0; i
< p_ticks
.length
; i
++) {
2707 var y_frac
= (p_ticks
[i
].v
- p_axis
.computedValueRange
[0]) / p_scale
;
2708 var y_val
= axis
.computedValueRange
[0] + y_frac
* scale
;
2709 tick_values
.push(y_val
);
2713 Dygraph
.numericTicks(axis
.computedValueRange
[0],
2714 axis
.computedValueRange
[1],
2715 this, axis
, tick_values
);
2716 axis
.ticks
= ret
.ticks
;
2717 this.numYDigits_
= ret
.numDigits
;
2723 * Calculates the rolling average of a data set.
2724 * If originalData is [label, val], rolls the average of those.
2725 * If originalData is [label, [, it's interpreted as [value, stddev]
2726 * and the roll is returned in the same form, with appropriately reduced
2727 * stddev for each value.
2728 * Note that this is where fractional input (i.e. '5/10') is converted into
2730 * @param {Array} originalData The data in the appropriate format (see above)
2731 * @param {Number} rollPeriod The number of points over which to average the
2734 Dygraph
.prototype.rollingAverage
= function(originalData
, rollPeriod
) {
2735 if (originalData
.length
< 2)
2736 return originalData
;
2737 var rollPeriod
= Math
.min(rollPeriod
, originalData
.length
- 1);
2738 var rollingData
= [];
2739 var sigma
= this.attr_("sigma");
2741 if (this.fractions_
) {
2743 var den
= 0; // numerator/denominator
2745 for (var i
= 0; i
< originalData
.length
; i
++) {
2746 num
+= originalData
[i
][1][0];
2747 den
+= originalData
[i
][1][1];
2748 if (i
- rollPeriod
>= 0) {
2749 num
-= originalData
[i
- rollPeriod
][1][0];
2750 den
-= originalData
[i
- rollPeriod
][1][1];
2753 var date
= originalData
[i
][0];
2754 var value
= den
? num
/ den
: 0.0;
2755 if (this.attr_("errorBars")) {
2756 if (this.wilsonInterval_
) {
2757 // For more details on this confidence interval, see:
2758 // http://en.wikipedia.org/wiki
/Binomial_confidence_interval
2760 var p
= value
< 0 ? 0 : value
, n
= den
;
2761 var pm
= sigma
* Math
.sqrt(p
*(1-p
)/n + sigma*sigma/(4*n
*n
));
2762 var denom
= 1 + sigma
* sigma
/ den
;
2763 var low
= (p
+ sigma
* sigma
/ (2 * den) - pm) / denom
;
2764 var high
= (p
+ sigma
* sigma
/ (2 * den) + pm) / denom
;
2765 rollingData
[i
] = [date
,
2766 [p
* mult
, (p
- low
) * mult
, (high
- p
) * mult
]];
2768 rollingData
[i
] = [date
, [0, 0, 0]];
2771 var stddev
= den
? sigma
* Math
.sqrt(value
* (1 - value
) / den
) : 1.0;
2772 rollingData
[i
] = [date
, [mult
* value
, mult
* stddev
, mult
* stddev
]];
2775 rollingData
[i
] = [date
, mult
* value
];
2778 } else if (this.attr_("customBars")) {
2783 for (var i
= 0; i
< originalData
.length
; i
++) {
2784 var data
= originalData
[i
][1];
2786 rollingData
[i
] = [originalData
[i
][0], [y
, y
- data
[0], data
[2] - y
]];
2788 if (y
!= null && !isNaN(y
)) {
2794 if (i
- rollPeriod
>= 0) {
2795 var prev
= originalData
[i
- rollPeriod
];
2796 if (prev
[1][1] != null && !isNaN(prev
[1][1])) {
2803 rollingData
[i
] = [originalData
[i
][0], [ 1.0 * mid
/ count
,
2804 1.0 * (mid
- low
) / count
,
2805 1.0 * (high
- mid
) / count
]];
2808 // Calculate the rolling average for the first rollPeriod - 1 points where
2809 // there is not enough data to roll over the full number of points
2810 var num_init_points
= Math
.min(rollPeriod
- 1, originalData
.length
- 2);
2811 if (!this.attr_("errorBars")){
2812 if (rollPeriod
== 1) {
2813 return originalData
;
2816 for (var i
= 0; i
< originalData
.length
; i
++) {
2819 for (var j
= Math
.max(0, i
- rollPeriod
+ 1); j
< i
+ 1; j
++) {
2820 var y
= originalData
[j
][1];
2821 if (y
== null || isNaN(y
)) continue;
2823 sum
+= originalData
[j
][1];
2826 rollingData
[i
] = [originalData
[i
][0], sum
/ num_ok
];
2828 rollingData
[i
] = [originalData
[i
][0], null];
2833 for (var i
= 0; i
< originalData
.length
; i
++) {
2837 for (var j
= Math
.max(0, i
- rollPeriod
+ 1); j
< i
+ 1; j
++) {
2838 var y
= originalData
[j
][1][0];
2839 if (y
== null || isNaN(y
)) continue;
2841 sum
+= originalData
[j
][1][0];
2842 variance
+= Math
.pow(originalData
[j
][1][1], 2);
2845 var stddev
= Math
.sqrt(variance
) / num_ok
;
2846 rollingData
[i
] = [originalData
[i
][0],
2847 [sum
/ num_ok
, sigma
* stddev
, sigma
* stddev
]];
2849 rollingData
[i
] = [originalData
[i
][0], [null, null, null]];
2859 * Parses a date, returning the number of milliseconds since epoch. This can be
2860 * passed in as an xValueParser in the Dygraph constructor.
2861 * TODO(danvk): enumerate formats that this understands.
2862 * @param {String} A date in YYYYMMDD format.
2863 * @return {Number} Milliseconds since epoch.
2866 Dygraph
.dateParser
= function(dateStr
, self
) {
2869 if (dateStr
.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
2870 dateStrSlashed
= dateStr
.replace("-", "/", "g");
2871 while (dateStrSlashed
.search("-") != -1) {
2872 dateStrSlashed
= dateStrSlashed
.replace("-", "/");
2874 d
= Date
.parse(dateStrSlashed
);
2875 } else if (dateStr
.length
== 8) { // e.g. '20090712'
2876 // TODO(danvk): remove support for this format. It's confusing.
2877 dateStrSlashed
= dateStr
.substr(0,4) + "/" + dateStr
.substr(4,2)
2878 + "/" + dateStr
.substr(6,2);
2879 d
= Date
.parse(dateStrSlashed
);
2881 // Any format that Date.parse will accept, e.g. "2009/07/12" or
2882 // "2009/07/12 12:34:56"
2883 d
= Date
.parse(dateStr
);
2886 if (!d
|| isNaN(d
)) {
2887 self
.error("Couldn't parse " + dateStr
+ " as a date");
2893 * Detects the type of the str (date or numeric) and sets the various
2894 * formatting attributes in this.attrs_ based on this type.
2895 * @param {String} str An x value.
2898 Dygraph
.prototype.detectTypeFromString_
= function(str
) {
2900 if (str
.indexOf('-') > 0 ||
2901 str
.indexOf('/') >= 0 ||
2902 isNaN(parseFloat(str
))) {
2904 } else if (str
.length
== 8 && str
> '19700101' && str
< '20371231') {
2905 // TODO(danvk): remove support for this format.
2910 this.attrs_
.xValueFormatter
= Dygraph
.dateString_
;
2911 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
2912 this.attrs_
.xTicker
= Dygraph
.dateTicker
;
2913 this.attrs_
.xAxisLabelFormatter
= Dygraph
.dateAxisFormatter
;
2915 this.attrs_
.xValueFormatter
= this.attrs_
.yValueFormatter
;
2916 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
2917 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
2918 this.attrs_
.xAxisLabelFormatter
= this.attrs_
.xValueFormatter
;
2923 * Parses the value as a floating point number. This is like the parseFloat()
2924 * built-in, but with a few differences:
2925 * - the empty string is parsed as null, rather than NaN.
2926 * - if the string cannot be parsed at all, an error is logged.
2927 * If the string can't be parsed, this method returns null.
2928 * @param {String} x The string to be parsed
2929 * @param {Number} opt_line_no The line number from which the string comes.
2930 * @param {String} opt_line The text of the line from which the string comes.
2934 // Parse the x as a float or return null if it's not a number.
2935 Dygraph
.prototype.parseFloat_
= function(x
, opt_line_no
, opt_line
) {
2936 var val
= parseFloat(x
);
2937 if (!isNaN(val
)) return val
;
2939 // Try to figure out what happeend.
2940 // If the value is the empty string, parse it as null.
2941 if (/^ *$/.test(x
)) return null;
2943 // If it was actually "NaN", return it as NaN.
2944 if (/^ *nan *$/i.test(x
)) return NaN
;
2946 // Looks like a parsing error.
2947 var msg
= "Unable to parse '" + x
+ "' as a number";
2948 if (opt_line
!== null && opt_line_no
!== null) {
2949 msg
+= " on line " + (1+opt_line_no
) + " ('" + opt_line
+ "') of CSV.";
2957 * Parses a string in a special csv format. We expect a csv file where each
2958 * line is a date point, and the first field in each line is the date string.
2959 * We also expect that all remaining fields represent series.
2960 * if the errorBars attribute is set, then interpret the fields as:
2961 * date, series1, stddev1, series2, stddev2, ...
2962 * @param {Array.<Object>} data See above.
2965 * @return Array.<Object> An array with one entry for each row. These entries
2966 * are an array of cells in that row. The first entry is the parsed x-value for
2967 * the row. The second, third, etc. are the y-values. These can take on one of
2968 * three forms, depending on the CSV and constructor parameters:
2970 * 2. [ value, stddev ]
2971 * 3. [ low value, center value, high value ]
2973 Dygraph
.prototype.parseCSV_
= function(data
) {
2975 var lines
= data
.split("\n");
2977 // Use the default delimiter or fall back to a tab if that makes sense.
2978 var delim
= this.attr_('delimiter');
2979 if (lines
[0].indexOf(delim
) == -1 && lines
[0].indexOf('\t') >= 0) {
2984 if (this.labelsFromCSV_
) {
2986 this.attrs_
.labels
= lines
[0].split(delim
);
2991 var defaultParserSet
= false; // attempt to auto-detect x value type
2992 var expectedCols
= this.attr_("labels").length
;
2993 var outOfOrder
= false;
2994 for (var i
= start
; i
< lines
.length
; i
++) {
2995 var line
= lines
[i
];
2997 if (line
.length
== 0) continue; // skip blank lines
2998 if (line
[0] == '#') continue; // skip comment lines
2999 var inFields
= line
.split(delim
);
3000 if (inFields
.length
< 2) continue;
3003 if (!defaultParserSet
) {
3004 this.detectTypeFromString_(inFields
[0]);
3005 xParser
= this.attr_("xValueParser");
3006 defaultParserSet
= true;
3008 fields
[0] = xParser(inFields
[0], this);
3010 // If fractions are expected, parse the numbers as "A/B
"
3011 if (this.fractions_) {
3012 for (var j = 1; j < inFields.length; j++) {
3013 // TODO(danvk): figure out an appropriate way to flag parse errors.
3014 var vals = inFields[j].split("/");
3015 if (vals.length != 2) {
3016 this.error('Expected fractional "num
/den
" values in CSV data ' +
3017 "but found a value
'" + inFields[j] + "' on line
" +
3018 (1 + i) + " ('" + line + "') which is not of
this form
.");
3021 fields[j] = [this.parseFloat_(vals[0], i, line),
3022 this.parseFloat_(vals[1], i, line)];
3025 } else if (this.attr_("errorBars
")) {
3026 // If there are error bars, values are (value, stddev) pairs
3027 if (inFields.length % 2 != 1) {
3028 this.error('Expected alternating (value, stdev.) pairs in CSV data ' +
3029 'but line ' + (1 + i) + ' has an odd number of values (' +
3030 (inFields.length - 1) + "): '" + line + "'");
3032 for (var j = 1; j < inFields.length; j += 2) {
3033 fields[(j + 1) / 2] = [this.parseFloat_(inFields[j], i, line),
3034 this.parseFloat_(inFields[j + 1], i, line)];
3036 } else if (this.attr_("customBars
")) {
3037 // Bars are a low;center;high tuple
3038 for (var j = 1; j < inFields.length; j++) {
3039 var vals = inFields[j].split(";");
3040 fields[j] = [ this.parseFloat_(vals[0], i, line),
3041 this.parseFloat_(vals[1], i, line),
3042 this.parseFloat_(vals[2], i, line) ];
3045 // Values are just numbers
3046 for (var j = 1; j < inFields.length; j++) {
3047 fields[j] = this.parseFloat_(inFields[j], i, line);
3050 if (ret.length > 0 && fields[0] < ret[ret.length - 1][0]) {
3054 if (fields.length != expectedCols) {
3055 this.error("Number of columns
in line
" + i + " (" + fields.length +
3056 ") does not agree
with number of
labels (" + expectedCols +
3060 // If the user specified the 'labels' option and none of the cells of the
3061 // first row parsed correctly, then they probably double-specified the
3062 // labels. We go with the values set in the option, discard this row and
3063 // log a warning to the JS console.
3064 if (i == 0 && this.attr_('labels')) {
3065 var all_null = true;
3066 for (var j = 0; all_null && j < fields.length; j++) {
3067 if (fields[j]) all_null = false;
3070 this.warn("The dygraphs
'labels' option is set
, but the first row of
" +
3071 "CSV
data ('" + line + "') appears to also contain labels
. " +
3072 "Will drop the CSV labels and
use the option labels
.");
3080 this.warn("CSV is out of order
; order it correctly to speed loading
.");
3081 ret.sort(function(a,b) { return a[0] - b[0] });
3088 * The user has provided their data as a pre-packaged JS array. If the x values
3089 * are numeric, this is the same as dygraphs' internal format. If the x values
3090 * are dates, we need to convert them from Date objects to ms since epoch.
3091 * @param {Array.<Object>} data
3092 * @return {Array.<Object>} data with numeric x values.
3094 Dygraph.prototype.parseArray_ = function(data) {
3095 // Peek at the first x value to see if it's numeric.
3096 if (data.length == 0) {
3097 this.error("Can
't plot empty data set");
3100 if (data[0].length == 0) {
3101 this.error("Data set cannot contain an empty row");
3105 if (this.attr_("labels") == null) {
3106 this.warn("Using default labels. Set labels explicitly via 'labels
' " +
3107 "in the options parameter");
3108 this.attrs_.labels = [ "X" ];
3109 for (var i = 1; i < data[0].length; i++) {
3110 this.attrs_.labels.push("Y" + i);
3114 if (Dygraph.isDateLike(data[0][0])) {
3115 // Some intelligent defaults for a date x-axis.
3116 this.attrs_.xValueFormatter = Dygraph.dateString_;
3117 this.attrs_.xAxisLabelFormatter = Dygraph.dateAxisFormatter;
3118 this.attrs_.xTicker = Dygraph.dateTicker;
3120 // Assume they're all dates
.
3121 var parsedData
= Dygraph
.clone(data
);
3122 for (var i
= 0; i
< data
.length
; i
++) {
3123 if (parsedData
[i
].length
== 0) {
3124 this.error("Row " + (1 + i
) + " of data is empty");
3127 if (parsedData
[i
][0] == null
3128 || typeof(parsedData
[i
][0].getTime
) != 'function'
3129 || isNaN(parsedData
[i
][0].getTime())) {
3130 this.error("x value in row " + (1 + i
) + " is not a Date");
3133 parsedData
[i
][0] = parsedData
[i
][0].getTime();
3137 // Some intelligent defaults for a numeric x-axis.
3138 this.attrs_
.xValueFormatter
= this.attrs_
.yValueFormatter
;
3139 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
3145 * Parses a DataTable object from gviz.
3146 * The data is expected to have a first column that is either a date or a
3147 * number. All subsequent columns must be numbers. If there is a clear mismatch
3148 * between this.xValueParser_ and the type of the first column, it will be
3149 * fixed. Fills out rawData_.
3150 * @param {Array.<Object>} data See above.
3153 Dygraph
.prototype.parseDataTable_
= function(data
) {
3154 var cols
= data
.getNumberOfColumns();
3155 var rows
= data
.getNumberOfRows();
3157 var indepType
= data
.getColumnType(0);
3158 if (indepType
== 'date' || indepType
== 'datetime') {
3159 this.attrs_
.xValueFormatter
= Dygraph
.dateString_
;
3160 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
3161 this.attrs_
.xTicker
= Dygraph
.dateTicker
;
3162 this.attrs_
.xAxisLabelFormatter
= Dygraph
.dateAxisFormatter
;
3163 } else if (indepType
== 'number') {
3164 this.attrs_
.xValueFormatter
= this.attrs_
.yValueFormatter
;
3165 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
3166 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
3167 this.attrs_
.xAxisLabelFormatter
= this.attrs_
.xValueFormatter
;
3169 this.error("only 'date', 'datetime' and 'number' types are supported for " +
3170 "column 1 of DataTable input (Got '" + indepType
+ "')");
3174 // Array of the column indices which contain data (and not annotations).
3176 var annotationCols
= {}; // data index -> [annotation cols]
3177 var hasAnnotations
= false;
3178 for (var i
= 1; i
< cols
; i
++) {
3179 var type
= data
.getColumnType(i
);
3180 if (type
== 'number') {
3182 } else if (type
== 'string' && this.attr_('displayAnnotations')) {
3183 // This is OK -- it's an annotation column.
3184 var dataIdx
= colIdx
[colIdx
.length
- 1];
3185 if (!annotationCols
.hasOwnProperty(dataIdx
)) {
3186 annotationCols
[dataIdx
] = [i
];
3188 annotationCols
[dataIdx
].push(i
);
3190 hasAnnotations
= true;
3192 this.error("Only 'number' is supported as a dependent type with Gviz." +
3193 " 'string' is only supported if displayAnnotations is true");
3197 // Read column labels
3198 // TODO(danvk): add support back for errorBars
3199 var labels
= [data
.getColumnLabel(0)];
3200 for (var i
= 0; i
< colIdx
.length
; i
++) {
3201 labels
.push(data
.getColumnLabel(colIdx
[i
]));
3202 if (this.attr_("errorBars")) i
+= 1;
3204 this.attrs_
.labels
= labels
;
3205 cols
= labels
.length
;
3208 var outOfOrder
= false;
3209 var annotations
= [];
3210 for (var i
= 0; i
< rows
; i
++) {
3212 if (typeof(data
.getValue(i
, 0)) === 'undefined' ||
3213 data
.getValue(i
, 0) === null) {
3214 this.warn("Ignoring row " + i
+
3215 " of DataTable because of undefined or null first column.");
3219 if (indepType
== 'date' || indepType
== 'datetime') {
3220 row
.push(data
.getValue(i
, 0).getTime());
3222 row
.push(data
.getValue(i
, 0));
3224 if (!this.attr_("errorBars")) {
3225 for (var j
= 0; j
< colIdx
.length
; j
++) {
3226 var col
= colIdx
[j
];
3227 row
.push(data
.getValue(i
, col
));
3228 if (hasAnnotations
&&
3229 annotationCols
.hasOwnProperty(col
) &&
3230 data
.getValue(i
, annotationCols
[col
][0]) != null) {
3232 ann
.series
= data
.getColumnLabel(col
);
3234 ann
.shortText
= String
.fromCharCode(65 /* A */ + annotations
.length
)
3236 for (var k
= 0; k
< annotationCols
[col
].length
; k
++) {
3237 if (k
) ann
.text
+= "\n";
3238 ann
.text
+= data
.getValue(i
, annotationCols
[col
][k
]);
3240 annotations
.push(ann
);
3244 for (var j
= 0; j
< cols
- 1; j
++) {
3245 row
.push([ data
.getValue(i
, 1 + 2 * j
), data
.getValue(i
, 2 + 2 * j
) ]);
3248 if (ret
.length
> 0 && row
[0] < ret
[ret
.length
- 1][0]) {
3252 // Strip out infinities, which give dygraphs problems later on.
3253 for (var j
= 0; j
< row
.length
; j
++) {
3254 if (!isFinite(row
[j
])) row
[j
] = null;
3260 this.warn("DataTable is out of order; order it correctly to speed loading.");
3261 ret
.sort(function(a
,b
) { return a
[0] - b
[0] });
3263 this.rawData_
= ret
;
3265 if (annotations
.length
> 0) {
3266 this.setAnnotations(annotations
, true);
3270 // These functions are all based on MochiKit.
3271 Dygraph
.update
= function (self
, o
) {
3272 if (typeof(o
) != 'undefined' && o
!== null) {
3274 if (o
.hasOwnProperty(k
)) {
3282 Dygraph
.isArrayLike
= function (o
) {
3283 var typ
= typeof(o
);
3285 (typ
!= 'object' && !(typ
== 'function' &&
3286 typeof(o
.item
) == 'function')) ||
3288 typeof(o
.length
) != 'number' ||
3296 Dygraph
.isDateLike
= function (o
) {
3297 if (typeof(o
) != "object" || o
=== null ||
3298 typeof(o
.getTime
) != 'function') {
3304 Dygraph
.clone
= function(o
) {
3305 // TODO(danvk): figure out how MochiKit's version works
3307 for (var i
= 0; i
< o
.length
; i
++) {
3308 if (Dygraph
.isArrayLike(o
[i
])) {
3309 r
.push(Dygraph
.clone(o
[i
]));
3319 * Get the CSV data. If it's in a function, call that function. If it's in a
3320 * file, do an XMLHttpRequest to get it.
3323 Dygraph
.prototype.start_
= function() {
3324 if (typeof this.file_
== 'function') {
3325 // CSV string. Pretend we got it via XHR.
3326 this.loadedEvent_(this.file_());
3327 } else if (Dygraph
.isArrayLike(this.file_
)) {
3328 this.rawData_
= this.parseArray_(this.file_
);
3330 } else if (typeof this.file_
== 'object' &&
3331 typeof this.file_
.getColumnRange
== 'function') {
3332 // must be a DataTable from gviz.
3333 this.parseDataTable_(this.file_
);
3335 } else if (typeof this.file_
== 'string') {
3336 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
3337 if (this.file_
.indexOf('\n') >= 0) {
3338 this.loadedEvent_(this.file_
);
3340 var req
= new XMLHttpRequest();
3342 req
.onreadystatechange
= function () {
3343 if (req
.readyState
== 4) {
3344 if (req
.status
== 200) {
3345 caller
.loadedEvent_(req
.responseText
);
3350 req
.open("GET", this.file_
, true);
3354 this.error("Unknown data format: " + (typeof this.file_
));
3359 * Changes various properties of the graph. These can include:
3361 * <li>file: changes the source data for the graph</li>
3362 * <li>errorBars: changes whether the data contains stddev</li>
3364 * @param {Object} attrs The new properties and values
3366 Dygraph
.prototype.updateOptions
= function(attrs
) {
3367 // TODO(danvk): this is a mess. Rethink this function.
3368 if ('rollPeriod' in attrs
) {
3369 this.rollPeriod_
= attrs
.rollPeriod
;
3371 if ('dateWindow' in attrs
) {
3372 this.dateWindow_
= attrs
.dateWindow
;
3375 // TODO(danvk): validate per-series options.
3380 // highlightCircleSize
3382 Dygraph
.update(this.user_attrs_
, attrs
);
3383 Dygraph
.update(this.renderOptions_
, attrs
);
3385 this.labelsFromCSV_
= (this.attr_("labels") == null);
3387 // TODO(danvk): this doesn't match the constructor logic
3388 this.layout_
.updateOptions({ 'errorBars': this.attr_("errorBars") });
3389 if (attrs
['file']) {
3390 this.file_
= attrs
['file'];
3398 * Resizes the dygraph. If no parameters are specified, resizes to fill the
3399 * containing div (which has presumably changed size since the dygraph was
3400 * instantiated. If the width/height are specified, the div will be resized.
3402 * This is far more efficient than destroying and re-instantiating a
3403 * Dygraph, since it doesn't have to reparse the underlying data.
3405 * @param {Number} width Width (in pixels)
3406 * @param {Number} height Height (in pixels)
3408 Dygraph
.prototype.resize
= function(width
, height
) {
3409 if (this.resize_lock
) {
3412 this.resize_lock
= true;
3414 if ((width
=== null) != (height
=== null)) {
3415 this.warn("Dygraph.resize() should be called with zero parameters or " +
3416 "two non-NULL parameters. Pretending it was zero.");
3417 width
= height
= null;
3420 // TODO(danvk): there should be a clear() method.
3421 this.maindiv_
.innerHTML
= "";
3422 this.attrs_
.labelsDiv
= null;
3425 this.maindiv_
.style
.width
= width
+ "px";
3426 this.maindiv_
.style
.height
= height
+ "px";
3427 this.width_
= width
;
3428 this.height_
= height
;
3430 this.width_
= this.maindiv_
.offsetWidth
;
3431 this.height_
= this.maindiv_
.offsetHeight
;
3434 this.createInterface_();
3437 this.resize_lock
= false;
3441 * Adjusts the number of points in the rolling average. Updates the graph to
3442 * reflect the new averaging period.
3443 * @param {Number} length Number of points over which to average the data.
3445 Dygraph
.prototype.adjustRoll
= function(length
) {
3446 this.rollPeriod_
= length
;
3451 * Returns a boolean array of visibility statuses.
3453 Dygraph
.prototype.visibility
= function() {
3454 // Do lazy-initialization, so that this happens after we know the number of
3456 if (!this.attr_("visibility")) {
3457 this.attrs_
["visibility"] = [];
3459 while (this.attr_("visibility").length
< this.rawData_
[0].length
- 1) {
3460 this.attr_("visibility").push(true);
3462 return this.attr_("visibility");
3466 * Changes the visiblity of a series.
3468 Dygraph
.prototype.setVisibility
= function(num
, value
) {
3469 var x
= this.visibility();
3470 if (num
< 0 || num
>= x
.length
) {
3471 this.warn("invalid series number in setVisibility: " + num
);
3479 * Update the list of annotations and redraw the chart.
3481 Dygraph
.prototype.setAnnotations
= function(ann
, suppressDraw
) {
3482 // Only add the annotation CSS rule once we know it will be used.
3483 Dygraph
.addAnnotationRule();
3484 this.annotations_
= ann
;
3485 this.layout_
.setAnnotations(this.annotations_
);
3486 if (!suppressDraw
) {
3492 * Return the list of annotations.
3494 Dygraph
.prototype.annotations
= function() {
3495 return this.annotations_
;
3499 * Get the index of a series (column) given its name. The first column is the
3500 * x-axis, so the data series start with index 1.
3502 Dygraph
.prototype.indexFromSetName
= function(name
) {
3503 var labels
= this.attr_("labels");
3504 for (var i
= 0; i
< labels
.length
; i
++) {
3505 if (labels
[i
] == name
) return i
;
3510 Dygraph
.addAnnotationRule
= function() {
3511 if (Dygraph
.addedAnnotationCSS
) return;
3513 var rule
= "border: 1px solid black; " +
3514 "background-color: white; " +
3515 "text-align: center;";
3517 var styleSheetElement
= document
.createElement("style");
3518 styleSheetElement
.type
= "text/css";
3519 document
.getElementsByTagName("head")[0].appendChild(styleSheetElement
);
3521 // Find the first style sheet that we can access.
3522 // We may not add a rule to a style sheet from another domain for security
3523 // reasons. This sometimes comes up when using gviz, since the Google gviz JS
3524 // adds its own style sheets from google.com.
3525 for (var i
= 0; i
< document
.styleSheets
.length
; i
++) {
3526 if (document
.styleSheets
[i
].disabled
) continue;
3527 var mysheet
= document
.styleSheets
[i
];
3529 if (mysheet
.insertRule
) { // Firefox
3530 var idx
= mysheet
.cssRules
? mysheet
.cssRules
.length
: 0;
3531 mysheet
.insertRule(".dygraphDefaultAnnotation { " + rule
+ " }", idx
);
3532 } else if (mysheet
.addRule
) { // IE
3533 mysheet
.addRule(".dygraphDefaultAnnotation", rule
);
3535 Dygraph
.addedAnnotationCSS
= true;
3538 // Was likely a security exception.
3542 this.warn("Unable to add default annotation CSS rule; display may be off.");
3546 * Create a new canvas element. This is more complex than a simple
3547 * document.createElement("canvas") because of IE and excanvas.
3549 Dygraph
.createCanvas
= function() {
3550 var canvas
= document
.createElement("canvas");
3552 isIE
= (/MSIE/.test(navigator
.userAgent
) && !window
.opera
);
3553 if (isIE
&& (typeof(G_vmlCanvasManager
) != 'undefined')) {
3554 canvas
= G_vmlCanvasManager
.initElement(canvas
);
3562 * A wrapper around Dygraph that implements the gviz API.
3563 * @param {Object} container The DOM object the visualization should live in.
3565 Dygraph
.GVizChart
= function(container
) {
3566 this.container
= container
;
3569 Dygraph
.GVizChart
.prototype.draw
= function(data
, options
) {
3570 // Clear out any existing dygraph.
3571 // TODO(danvk): would it make more sense to simply redraw using the current
3572 // date_graph object?
3573 this.container
.innerHTML
= '';
3574 if (typeof(this.date_graph
) != 'undefined') {
3575 this.date_graph
.destroy();
3578 this.date_graph
= new Dygraph(this.container
, data
, options
);
3582 * Google charts compatible setSelection
3583 * Only row selection is supported, all points in the row will be highlighted
3584 * @param {Array} array of the selected cells
3587 Dygraph
.GVizChart
.prototype.setSelection
= function(selection_array
) {
3589 if (selection_array
.length
) {
3590 row
= selection_array
[0].row
;
3592 this.date_graph
.setSelection(row
);
3596 * Google charts compatible getSelection implementation
3597 * @return {Array} array of the selected cells
3600 Dygraph
.GVizChart
.prototype.getSelection
= function() {
3603 var row
= this.date_graph
.getSelection();
3605 if (row
< 0) return selection
;
3608 for (var i
in this.date_graph
.layout_
.datasets
) {
3609 selection
.push({row
: row
, column
: col
});
3616 // Older pages may still use this name.
3617 DateGraph
= Dygraph
;
3619 // <REMOVE_FOR_COMBINED>
3620 Dygraph
.OPTIONS_REFERENCE
= // <JSON>
3625 "description": "Usually, dygraphs will use the range of the data plus some padding to set the range of the y-axis. If this option is set, the y-axis will always include zero, typically as the lowest value. This can be used to avoid exaggerating the variance in the data"
3628 "type": "integer >= 1",
3630 "description": "Number of days over which to average data. Discussed extensively above."
3635 "description": "If the rolling average period text box should be shown."
3638 "example": "['red', '#00FF00']",
3639 "type": "array<string>",
3640 "default": "(see description)",
3641 "description": "List of colors for the data series. These can be of the form \"#AABBCC\" or \"rgb(255,100,200)\" or \"yellow\", etc. If not specified, equally-spaced points around a color wheel are used."
3646 "description": "Should the area underneath the graph be filled? This option is not compatible with error bars."
3649 "type": "Array of booleans",
3650 "default": "[true, true, ...]",
3651 "description": "Which series should initially be visible? Once the Dygraph has been constructed, you can access and modify the visibility of each series using the <code>visibility</code> and <code>setVisibility</code> methods."
3653 "colorSaturation": {
3654 "type": "0.0 - 1.0",
3656 "description": "If <strong>colors</strong> is not specified, saturation of the automatically-generated data series colors."
3659 "type": "float (0.0 - 1.0)",
3661 "description": "If colors is not specified, value of the data series colors, as in hue/saturation/value. (0.0-1.0, default 0.5)"
3664 "type": "function(e, date)",
3665 "snippet": "function(e, date){<br> alert(date);<br>}",
3667 "description": "A function to call when a data point is clicked. The function should take two arguments, the event object for the click and the date that was clicked."
3670 "type": "function(minDate, maxDate, yRanges)",
3672 "description": "A function to call when the zoom window is changed (either by zooming in or out). minDate and maxDate are milliseconds since epoch. yRanges is an array of [bottom, top] pairs, one for each y-axis."
3676 "example": "0.5, 2.0",
3678 "description": "The width of the lines connecting data points. This can be used to increase the contrast or some graphs."
3681 "type": "Array of two Dates or numbers",
3682 "example": "[<br> Date.parse('2006-01-01'),<br> (new Date()).valueOf()<br>]",
3683 "default": "Full range of the input is shown",
3684 "description": "Initially zoom in on a section of the graph. Is of the form [earliest, latest], where earliest/latest are milliseconds since epoch. If the data for the x-axis is numeric, the values in dateWindow must also be numbers."
3687 "type": "Array of two numbers",
3688 "example": "[10, 110]",
3689 "default": "Full range of the input is shown",
3690 "description": "Explicitly set the vertical range of the graph to [low, high]."
3692 "labelsSeparateLines": {
3695 "description": "Put <code><br/></code> between lines in the label string. Often used in conjunction with <strong>labelsDiv</strong>."
3698 "type": "DOM element or string",
3699 "example": "<code style='font-size: small'>document.getElementById('foo')</code>or<code>'foo'",
3701 "description": "Show data labels in an external div, rather than on the graph. This value can either be a div element or a div id."
3703 "labelsShowZeroValues": {
3706 "description": "Show zero value labels in the labelsDiv."
3711 "description": "Show K/M/B for thousands/millions/billions on y-axis."
3716 "description": "Show k/M/G for kilo/Mega/Giga on y-axis. This is different than <code>labelsKMB</code> in that it uses base 2, not 10."
3721 "description": "Width (in pixels) of the div which shows information on the currently-highlighted points."
3723 "labelsDivStyles": {
3726 "description": "Additional styles to apply to the currently-highlighted points div. For example, { 'font-weight': 'bold' } will make the labels bold."
3728 "highlightCircleSize": {
3731 "description": "The size in pixels of the dot drawn over highlighted points."
3736 "description": "Draw a small dot at each point, in addition to a line going through the point. This makes the individual data points easier to see, but can increase visual clutter in the chart."
3741 "description": "The size of the dot to draw on each point in pixels (see drawPoints). A dot is always drawn when a point is \"isolated\", i.e. there is a missing point on either side of it. This also controls the size of those dots."
3743 "pixelsPerXLabel": {
3746 "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
3748 "pixelsPerYLabel": {
3751 "description": "Number of pixels to require between each x- and y-label. Larger values will yield a sparser axis with fewer ticks."
3753 "xAxisLabelWidth": {
3756 "description": "Width, in pixels, of the x-axis labels."
3758 "yAxisLabelWidth": {
3761 "description": "Width, in pixels, of the y-axis labels."
3763 "axisLabelFontSize": {
3766 "description": "Size of the font (in pixels) to use in the axis labels, both x- and y-axis."
3768 "xAxisLabelFormatter": {
3769 "type": "function(date, granularity)",
3770 "default": "Dygraph.dateAxisFormatter",
3771 "description": "Function to call to format values along the x axis."
3773 "yAxisLabelFormatter": {
3774 "type": "function(x)",
3775 "default": "yValueFormatter",
3776 "description": "Function used to format values along the Y axis. By default it uses the same as the <code>yValueFormatter</code> unless specified."
3781 "description": "Number of pixels to leave blank at the right edge of the Dygraph. This makes it easier to highlight the right-most data point."
3786 "description": "Does the data contain standard deviations? Setting this to true alters the input format (see above)."
3791 "description": "When errorBars is set, shade this many standard deviations above/below each point."
3796 "description": "When set, attempt to parse each cell in the CSV file as \"a/b\", where a and b are integers. The ratio will be plotted. This allows computation of Wilson confidence intervals (see below)."
3801 "description": "Use in conjunction with the \"fractions\" option. Instead of plotting +/- N standard deviations, dygraphs will compute a Wilson confidence interval and plot that. This has more reasonable behavior for ratios close to 0 or 1."
3806 "description": "When set, parse each CSV cell as \"low;middle;high\". Error bars will be drawn for each point between low and high, with the series itself going through middle."
3809 "type": "function(dygraph, is_initial)",
3811 "description": "When set, this callback gets called every time the dygraph is drawn. This includes the initial draw, after zooming and repeatedly while panning. The first parameter is the dygraph being drawn. The second is a boolean value indicating whether this is the initial draw."
3814 "type": "red, blue",
3815 "default": "rgb(128,128,128)",
3816 "description": "The color of the gridlines."
3818 "highlightCallback": {
3819 "type": "function(event, x, points,row)",
3821 "description": "When set, this callback gets called every time a new point is highlighted. The parameters are the JavaScript mousemove event, the x-coordinate of the highlighted points and an array of highlighted points: <code>[ {name: 'series', yval: y-value}, … ]</code>"
3823 "unhighlightCallback": {
3824 "type": "function(event)",
3826 "description": "When set, this callback gets called every time the user stops highlighting any point by mousing out of the graph. The parameter is the mouseout event."
3828 "underlayCallback": {
3829 "type": "function(canvas, area, dygraph)",
3831 "description": "When set, this callback gets called before the chart is drawn. It details on how to use this."
3836 "description": "Width, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
3841 "description": "Height, in pixels, of the chart. If the container div has been explicitly sized, this will be ignored."
3846 "description": "When set, display the graph as a step plot instead of a line plot."
3848 "xValueFormatter": {
3849 "type": "function(x)",
3850 "default": "(Round to 2 decimal places)",
3851 "description": "Function to provide a custom display format for the X value for mouseover."
3853 "yValueFormatter": {
3854 "type": "function(x)",
3855 "default": "(Round to 2 decimal places)",
3856 "description": "Function to provide a custom display format for the Y value for mouseover."
3861 "description": "When set, the heuristic that fixes the Y axis at zero for a data set with the minimum Y value of zero is disabled. \nThis is particularly useful for data sets that contain many zero values, especially for step plots which may otherwise have lines not visible running along the bottom axis."
3866 "description": "When set for a y-axis, the graph shows that axis in y-scale. Any values less than or equal to zero are not displayed.\n\nNot compatible with showZero, and ignores connectSeparatedPoints. Also, showing log scale with valueRanges that are less than zero will result in an unviewable graph."
3869 "type": "array<string>",
3870 "default": "[\"X\", \"Y1\", \"Y2\", ...]*",
3871 "description": "A name for each data series, including the independent (X) series. For CSV files and DataTable objections, this is determined by context. For raw data, this must be specified. If it is not, default values are supplied and a warning is logged."
3873 "interactionModel": {
3876 "description": "TODO(konigsberg): document this"
3881 "description": "The delimiter to look for when separating fields of a CSV file. Setting this to a tab is not usually necessary, since tab-delimited data is auto-detected."
3884 "type": "function(str) -> number",
3885 "default": "parseFloat() or Date.parse()*",
3886 "description": "A function which parses x-values (i.e. the dependent series). Must return a number, even when the values are dates. In this case, millis since epoch are used. This is used primarily for parsing CSV data. *=Dygraphs is slightly more accepting in the dates which it will parse. See code for details."
3891 "description": "The size of the line to display next to each tick mark on x- or y-axes."
3894 "type": "string or object",
3895 "default": "(none)",
3896 "description": "Set to either an object ({}) filled with options for this axis or to the name of an existing data series with its own axis to re-use that axis. See tests for usage."
3898 "connectSeparatedPoints": {
3901 "description": "Usually, when Dygraphs encounters a missing value in a data series, it interprets this as a gap and draws it as such. If, instead, the missing values represents an x-value for which only a different series has data, then you'll want to connect the dots by setting this to true. To explicitly include a gap with this option set, use a value of NaN."
3906 "description": "If set, stack series on top of one another rather than drawing them independently."
3909 "type": "function(min, max, dygraph) -> [{v: ..., label: ...}, ...]",
3910 "default": "Dygraph.dateTicker or Dygraph.numericTicks",
3911 "description": "This lets you specify an arbitrary function to generate tick marks on an axis. The tick marks are an array of (value, label) pairs. The built-in functions go to great lengths to choose good tick marks so, if you set this option, you'll most likely want to call one of them and modify the result."
3915 "default": "onmouseover",
3916 "description": "When to display the legend. By default, it only appears when a user mouses over the chart. Set it to \"always\" to always display a legend of some sort."
3918 "showLabelsOnHighlight": {
3921 "description": "Whether to show the legend upon mouseover."
3923 "hideOverlayOnMouseOut": {
3926 "description": "Whether to hide the legend when the mouse leaves the chart area."
3928 "pointClickCallback": {
3933 "annotationMouseOverHandler": {
3938 "annotationMouseOutHandler": {
3945 // NOTE: in addition to parsing as JS, this snippet is expected to be valid
3946 // JSON. This assumption cannot be checked in JS, but it will be checked when
3947 // documentation is generated by the generate-documentation.py script.
3949 // Do a quick sanity check on the options reference.
3951 var warn
= function(msg
) { if (console
) console
.warn(msg
); };
3952 var flds
= ['type', 'default', 'description'];
3953 for (var k
in Dygraph
.OPTIONS_REFERENCE
) {
3954 if (!Dygraph
.OPTIONS_REFERENCE
.hasOwnProperty(k
)) continue;
3955 var op
= Dygraph
.OPTIONS_REFERENCE
[k
];
3956 for (var i
= 0; i
< flds
.length
; i
++) {
3957 if (!op
.hasOwnProperty(flds
[i
])) {
3958 warn('Option ' + k
+ ' missing "' + flds
[i
] + '" property');
3959 } else if (typeof(op
[flds
[i
]]) != 'string') {
3960 warn(k
+ '.' + flds
[i
] + ' must be of type string');
3965 // </REMOVE_FOR_COMBINED
>