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
28 Date,SeriesA,SeriesB,...
29 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
30 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
32 If the 'fractions' option is set, the input should be of the form:
34 Date,SeriesA,SeriesB,...
35 YYYYMMDD,A1/B1,A2/B2,...
36 YYYYMMDD,A1/B1,A2/B2,...
38 And error bars will be calculated automatically using a binomial distribution.
40 For further documentation and examples, see http://www.danvk.org/dygraphs
45 * An interactive, zoomable graph
46 * @param {String | Function} file A file containing CSV data or a function that
47 * returns this data. The expected format for each line is
48 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
49 * YYYYMMDD,val1,stddev1,val2,stddev2,...
50 * @param {Object} attrs Various other attributes, e.g. errorBars determines
51 * whether the input data contains error ranges.
53 Dygraph
= function(div
, data
, opts
) {
54 if (arguments
.length
> 0) {
55 if (arguments
.length
== 4) {
56 // Old versions of dygraphs took in the series labels as a constructor
57 // parameter. This doesn't make sense anymore, but it's easy to continue
58 // to support this usage.
59 this.warn("Using deprecated four-argument dygraph constructor");
60 this.__old_init__(div
, data
, arguments
[2], arguments
[3]);
62 this.__init__(div
, data
, opts
);
67 Dygraph
.NAME
= "Dygraph";
68 Dygraph
.VERSION
= "1.2";
69 Dygraph
.__repr__
= function() {
70 return "[" + this.NAME
+ " " + this.VERSION
+ "]";
72 Dygraph
.toString
= function() {
73 return this.__repr__();
76 // Various default values
77 Dygraph
.DEFAULT_ROLL_PERIOD
= 1;
78 Dygraph
.DEFAULT_WIDTH
= 480;
79 Dygraph
.DEFAULT_HEIGHT
= 320;
80 Dygraph
.AXIS_LINE_WIDTH
= 0.3;
82 // Default attribute values.
83 Dygraph
.DEFAULT_ATTRS
= {
84 highlightCircleSize
: 3,
90 // TODO(danvk): move defaults from createStatusMessage_ here.
92 labelsSeparateLines
: false,
98 axisLabelFontSize
: 14,
104 xValueFormatter
: Dygraph
.dateString_
,
105 xValueParser
: Dygraph
.dateParser
,
106 xTicker
: Dygraph
.dateTicker
,
111 wilsonInterval
: true, // only relevant if fractions is true
115 // Various logging levels.
121 Dygraph
.prototype.__old_init__
= function(div
, file
, labels
, attrs
) {
122 // Labels is no longer a constructor parameter, since it's typically set
123 // directly from the data source. It also conains a name for the x-axis,
124 // which the previous constructor form did not.
125 if (labels
!= null) {
126 var new_labels
= ["Date"];
127 for (var i
= 0; i
< labels
.length
; i
++) new_labels
.push(labels
[i
]);
128 MochiKit
.Base
.update(attrs
, { 'labels': new_labels
});
130 this.__init__(div
, file
, attrs
);
134 * Initializes the Dygraph. This creates a new DIV and constructs the PlotKit
135 * and interaction <canvas> inside of it. See the constructor for details
137 * @param {String | Function} file Source data
138 * @param {Array.<String>} labels Names of the data series
139 * @param {Object} attrs Miscellaneous other options
142 Dygraph
.prototype.__init__
= function(div
, file
, attrs
) {
143 // Support two-argument constructor
144 if (attrs
== null) { attrs
= {}; }
146 // Copy the important bits into the object
147 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
150 this.rollPeriod_
= attrs
.rollPeriod
|| Dygraph
.DEFAULT_ROLL_PERIOD
;
151 this.previousVerticalX_
= -1;
152 this.fractions_
= attrs
.fractions
|| false;
153 this.dateWindow_
= attrs
.dateWindow
|| null;
154 this.valueRange_
= attrs
.valueRange
|| null;
155 this.wilsonInterval_
= attrs
.wilsonInterval
|| true;
156 this.customBars_
= attrs
.customBars
|| false;
158 // If the div isn't already sized then give it a default size.
159 if (div
.style
.width
== '') {
160 div
.style
.width
= Dygraph
.DEFAULT_WIDTH
+ "px";
162 if (div
.style
.height
== '') {
163 div
.style
.height
= Dygraph
.DEFAULT_HEIGHT
+ "px";
165 this.width_
= parseInt(div
.style
.width
, 10);
166 this.height_
= parseInt(div
.style
.height
, 10);
168 // Dygraphs has many options, some of which interact with one another.
169 // To keep track of everything, we maintain two sets of options:
171 // this.user_attrs_ only options explicitly set by the user.
172 // this.attrs_ defaults, options derived from user_attrs_, data.
174 // Options are then accessed this.attr_('attr'), which first looks at
175 // user_attrs_ and then computed attrs_. This way Dygraphs can set intelligent
176 // defaults without overriding behavior that the user specifically asks for.
177 this.user_attrs_
= {};
178 MochiKit
.Base
.update(this.user_attrs_
, attrs
);
181 MochiKit
.Base
.update(this.attrs_
, Dygraph
.DEFAULT_ATTRS
);
183 // Make a note of whether labels will be pulled from the CSV file.
184 this.labelsFromCSV_
= (this.attr_("labels") == null);
186 // Create the containing DIV and other interactive elements
187 this.createInterface_();
189 // Create the PlotKit grapher
190 // TODO(danvk): why does the Layout need its own set of options?
191 this.layoutOptions_
= { 'errorBars': (this.attr_("errorBars") ||
193 'xOriginIsZero': false };
194 MochiKit
.Base
.update(this.layoutOptions_
, this.attrs_
);
195 MochiKit
.Base
.update(this.layoutOptions_
, this.user_attrs_
);
197 this.layout_
= new DygraphLayout(this.layoutOptions_
);
199 // TODO(danvk): why does the Renderer need its own set of options?
200 this.renderOptions_
= { colorScheme
: this.colors_
,
202 axisLineWidth
: Dygraph
.AXIS_LINE_WIDTH
};
203 MochiKit
.Base
.update(this.renderOptions_
, this.attrs_
);
204 MochiKit
.Base
.update(this.renderOptions_
, this.user_attrs_
);
205 this.plotter_
= new DygraphCanvasRenderer(this.hidden_
, this.layout_
,
206 this.renderOptions_
);
208 this.createStatusMessage_();
209 this.createRollInterface_();
210 this.createDragInterface_();
212 // connect(window, 'onload', this, function(e) { this.start_(); });
216 Dygraph
.prototype.attr_
= function(name
) {
217 if (typeof(this.user_attrs_
[name
]) != 'undefined') {
218 return this.user_attrs_
[name
];
219 } else if (typeof(this.attrs_
[name
]) != 'undefined') {
220 return this.attrs_
[name
];
226 // TODO(danvk): any way I can get the line numbers to be this.warn call?
227 Dygraph
.prototype.log
= function(severity
, message
) {
228 if (typeof(console
) != 'undefined') {
231 console
.debug('dygraphs: ' + message
);
234 console
.info('dygraphs: ' + message
);
236 case Dygraph
.WARNING
:
237 console
.warn('dygraphs: ' + message
);
240 console
.error('dygraphs: ' + message
);
245 Dygraph
.prototype.info
= function(message
) {
246 this.log(Dygraph
.INFO
, message
);
248 Dygraph
.prototype.warn
= function(message
) {
249 this.log(Dygraph
.WARNING
, message
);
251 Dygraph
.prototype.error
= function(message
) {
252 this.log(Dygraph
.ERROR
, message
);
256 * Returns the current rolling period, as set by the user or an option.
257 * @return {Number} The number of days in the rolling window
259 Dygraph
.prototype.rollPeriod
= function() {
260 return this.rollPeriod_
;
264 * Generates interface elements for the Dygraph: a containing div, a div to
265 * display the current point, and a textbox to adjust the rolling average
269 Dygraph
.prototype.createInterface_
= function() {
270 // Create the all-enclosing graph div
271 var enclosing
= this.maindiv_
;
273 this.graphDiv
= MochiKit
.DOM
.DIV( { style
: { 'width': this.width_
+ "px",
274 'height': this.height_
+ "px"
276 appendChildNodes(enclosing
, this.graphDiv
);
278 // Create the canvas to store
279 // We need to subtract out some space for the x- and y-axis labels.
281 // - remove from height: (axisTickSize + height of tick label)
282 // height of tick label == axisLabelFontSize?
283 // - remove from width: axisLabelWidth / 2 (maybe on both ends
)
285 // - remove axisLabelFontSize from the top
286 // - remove axisTickSize from the left
288 var canvas
= MochiKit
.DOM
.CANVAS
;
289 this.canvas_
= canvas( { style
: { 'position': 'absolute' },
293 appendChildNodes(this.graphDiv
, this.canvas_
);
295 this.hidden_
= this.createPlotKitCanvas_(this.canvas_
);
296 connect(this.hidden_
, 'onmousemove', this, function(e
) { this.mouseMove_(e
) });
297 connect(this.hidden_
, 'onmouseout', this, function(e
) { this.mouseOut_(e
) });
301 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
302 * this particular canvas. All Dygraph work is done on this.canvas_.
303 * @param {Object} canvas The Dygraph canvas over which to overlay the plot
304 * @return {Object} The newly-created canvas
307 Dygraph
.prototype.createPlotKitCanvas_
= function(canvas
) {
308 var h
= document
.createElement("canvas");
309 h
.style
.position
= "absolute";
310 h
.style
.top
= canvas
.style
.top
;
311 h
.style
.left
= canvas
.style
.left
;
312 h
.width
= this.width_
;
313 h
.height
= this.height_
;
314 MochiKit
.DOM
.appendChildNodes(this.graphDiv
, h
);
319 * Generate a set of distinct colors for the data series. This is done with a
320 * color wheel. Saturation/Value are customizable, and the hue is
321 * equally-spaced around the color wheel. If a custom set of colors is
322 * specified, that is used instead.
325 Dygraph
.prototype.setColors_
= function() {
326 // TODO(danvk): compute this directly into this.attrs_['colorScheme'] and do
327 // away with this.renderOptions_.
328 var num
= this.attr_("labels").length
- 1;
330 var colors
= this.attr_('colors');
332 var sat
= this.attr_('colorSaturation') || 1.0;
333 var val
= this.attr_('colorValue') || 0.5;
334 for (var i
= 1; i
<= num
; i
++) {
335 var hue
= (1.0*i
/(1+num
));
336 this.colors_
.push( MochiKit
.Color
.Color
.fromHSV(hue
, sat
, val
) );
339 for (var i
= 0; i
< num
; i
++) {
340 var colorStr
= colors
[i
% colors
.length
];
341 this.colors_
.push( MochiKit
.Color
.Color
.fromString(colorStr
) );
345 // TODO(danvk): update this w/r
/t/ the
new options system
.
346 this.renderOptions_
.colorScheme
= this.colors_
;
347 MochiKit
.Base
.update(this.plotter_
.options
, this.renderOptions_
);
348 MochiKit
.Base
.update(this.layoutOptions_
, this.user_attrs_
);
349 MochiKit
.Base
.update(this.layoutOptions_
, this.attrs_
);
353 * Create the div that contains information on the selected point(s)
354 * This goes in the top right of the canvas, unless an external div has already
358 Dygraph
.prototype.createStatusMessage_
= function(){
359 if (!this.attr_("labelsDiv")) {
360 var divWidth
= this.attr_('labelsDivWidth');
361 var messagestyle
= { "style": {
362 "position": "absolute",
365 "width": divWidth
+ "px",
367 "left": (this.width_
- divWidth
- 2) + "px",
368 "background": "white",
370 "overflow": "hidden"}};
371 MochiKit
.Base
.update(messagestyle
["style"], this.attr_('labelsDivStyles'));
372 var div
= MochiKit
.DOM
.DIV(messagestyle
);
373 MochiKit
.DOM
.appendChildNodes(this.graphDiv
, div
);
374 this.attrs_
.labelsDiv
= div
;
379 * Create the text box to adjust the averaging period
380 * @return {Object} The newly-created text box
383 Dygraph
.prototype.createRollInterface_
= function() {
384 var display
= this.attr_('showRoller') ? "block" : "none";
385 var textAttr
= { "type": "text",
387 "value": this.rollPeriod_
,
388 "style": { "position": "absolute",
390 "top": (this.plotter_
.area
.h
- 25) + "px",
391 "left": (this.plotter_
.area
.x
+ 1) + "px",
394 var roller
= MochiKit
.DOM
.INPUT(textAttr
);
395 var pa
= this.graphDiv
;
396 MochiKit
.DOM
.appendChildNodes(pa
, roller
);
397 connect(roller
, 'onchange', this,
398 function() { this.adjustRoll(roller
.value
); });
403 * Set up all the mouse handlers needed to capture dragging behavior for zoom
404 * events. Uses MochiKit.Signal to attach all the event handlers.
407 Dygraph
.prototype.createDragInterface_
= function() {
410 // Tracks whether the mouse is down right now
411 var mouseDown
= false;
412 var dragStartX
= null;
413 var dragStartY
= null;
418 // Utility function to convert page-wide coordinates to canvas coords
421 var getX
= function(e
) { return e
.mouse().page
.x
- px
};
422 var getY
= function(e
) { return e
.mouse().page
.y
- py
};
424 // Draw zoom rectangles when the mouse is down and the user moves around
425 connect(this.hidden_
, 'onmousemove', function(event
) {
427 dragEndX
= getX(event
);
428 dragEndY
= getY(event
);
430 self
.drawZoomRect_(dragStartX
, dragEndX
, prevEndX
);
435 // Track the beginning of drag events
436 connect(this.hidden_
, 'onmousedown', function(event
) {
438 px
= PlotKit
.Base
.findPosX(self
.canvas_
);
439 py
= PlotKit
.Base
.findPosY(self
.canvas_
);
440 dragStartX
= getX(event
);
441 dragStartY
= getY(event
);
444 // If the user releases the mouse button during a drag, but not over the
445 // canvas, then it doesn't count as a zooming action.
446 connect(document
, 'onmouseup', this, function(event
) {
454 // Temporarily cancel the dragging event when the mouse leaves the graph
455 connect(this.hidden_
, 'onmouseout', this, function(event
) {
462 // If the mouse is released on the canvas during a drag event, then it's a
463 // zoom. Only do the zoom if it's over a large enough area (>= 10 pixels)
464 connect(this.hidden_
, 'onmouseup', this, function(event
) {
467 dragEndX
= getX(event
);
468 dragEndY
= getY(event
);
469 var regionWidth
= Math
.abs(dragEndX
- dragStartX
);
470 var regionHeight
= Math
.abs(dragEndY
- dragStartY
);
472 if (regionWidth
< 2 && regionHeight
< 2 &&
473 self
.attr_('clickCallback') != null &&
474 self
.lastx_
!= undefined
) {
475 // TODO(danvk): pass along more info about the point.
476 self
.attr_('clickCallback')(event
, new Date(self
.lastx_
));
479 if (regionWidth
>= 10) {
480 self
.doZoom_(Math
.min(dragStartX
, dragEndX
),
481 Math
.max(dragStartX
, dragEndX
));
483 self
.canvas_
.getContext("2d").clearRect(0, 0,
485 self
.canvas_
.height
);
493 // Double-clicking zooms back out
494 connect(this.hidden_
, 'ondblclick', this, function(event
) {
495 self
.dateWindow_
= null;
496 self
.drawGraph_(self
.rawData_
);
497 var minDate
= self
.rawData_
[0][0];
498 var maxDate
= self
.rawData_
[self
.rawData_
.length
- 1][0];
499 if (self
.attr_("zoomCallback")) {
500 self
.attr_("zoomCallback")(minDate
, maxDate
);
506 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
507 * up any previous zoom rectangles that were drawn. This could be optimized to
508 * avoid extra redrawing, but it's tricky to avoid interactions with the status
510 * @param {Number} startX The X position where the drag started, in canvas
512 * @param {Number} endX The current X position of the drag, in canvas coords.
513 * @param {Number} prevEndX The value of endX on the previous call to this
514 * function. Used to avoid excess redrawing
517 Dygraph
.prototype.drawZoomRect_
= function(startX
, endX
, prevEndX
) {
518 var ctx
= this.canvas_
.getContext("2d");
520 // Clean up from the previous rect if necessary
522 ctx
.clearRect(Math
.min(startX
, prevEndX
), 0,
523 Math
.abs(startX
- prevEndX
), this.height_
);
526 // Draw a light-grey rectangle to show the new viewing area
527 if (endX
&& startX
) {
528 ctx
.fillStyle
= "rgba(128,128,128,0.33)";
529 ctx
.fillRect(Math
.min(startX
, endX
), 0,
530 Math
.abs(endX
- startX
), this.height_
);
535 * Zoom to something containing [lowX, highX]. These are pixel coordinates
536 * in the canvas. The exact zoom window may be slightly larger if there are no
537 * data points near lowX or highX. This function redraws the graph.
538 * @param {Number} lowX The leftmost pixel value that should be visible.
539 * @param {Number} highX The rightmost pixel value that should be visible.
542 Dygraph
.prototype.doZoom_
= function(lowX
, highX
) {
543 // Find the earliest and latest dates contained in this canvasx range.
544 var points
= this.layout_
.points
;
547 // Find the nearest [minDate, maxDate] that contains [lowX, highX]
548 for (var i
= 0; i
< points
.length
; i
++) {
549 var cx
= points
[i
].canvasx
;
550 var x
= points
[i
].xval
;
551 if (cx
< lowX
&& (minDate
== null || x
> minDate
)) minDate
= x
;
552 if (cx
> highX
&& (maxDate
== null || x
< maxDate
)) maxDate
= x
;
554 // Use the extremes if either is missing
555 if (minDate
== null) minDate
= points
[0].xval
;
556 if (maxDate
== null) maxDate
= points
[points
.length
-1].xval
;
558 this.dateWindow_
= [minDate
, maxDate
];
559 this.drawGraph_(this.rawData_
);
560 if (this.attr_("zoomCallback")) {
561 this.attr_("zoomCallback")(minDate
, maxDate
);
566 * When the mouse moves in the canvas, display information about a nearby data
567 * point and draw dots over those points in the data series. This function
568 * takes care of cleanup of previously-drawn dots.
569 * @param {Object} event The mousemove event from the browser.
572 Dygraph
.prototype.mouseMove_
= function(event
) {
573 var canvasx
= event
.mouse().page
.x
- PlotKit
.Base
.findPosX(this.hidden_
);
574 var points
= this.layout_
.points
;
579 // Loop through all the points and find the date nearest to our current
581 var minDist
= 1e+100;
583 for (var i
= 0; i
< points
.length
; i
++) {
584 var dist
= Math
.abs(points
[i
].canvasx
- canvasx
);
585 if (dist
> minDist
) break;
589 if (idx
>= 0) lastx
= points
[idx
].xval
;
590 // Check that you can really highlight the last day's data
591 if (canvasx
> points
[points
.length
-1].canvasx
)
592 lastx
= points
[points
.length
-1].xval
;
594 // Extract the points we've selected
596 for (var i
= 0; i
< points
.length
; i
++) {
597 if (points
[i
].xval
== lastx
) {
598 selPoints
.push(points
[i
]);
602 // Clear the previously drawn vertical, if there is one
603 var circleSize
= this.attr_('highlightCircleSize');
604 var ctx
= this.canvas_
.getContext("2d");
605 if (this.previousVerticalX_
>= 0) {
606 var px
= this.previousVerticalX_
;
607 ctx
.clearRect(px
- circleSize
- 1, 0, 2 * circleSize
+ 2, this.height_
);
610 if (selPoints
.length
> 0) {
611 var canvasx
= selPoints
[0].canvasx
;
613 // Set the status message to indicate the selected point(s)
614 var replace
= this.attr_('xValueFormatter')(lastx
, this) + ":";
615 var clen
= this.colors_
.length
;
616 for (var i
= 0; i
< selPoints
.length
; i
++) {
617 if (this.attr_("labelsSeparateLines")) {
620 var point
= selPoints
[i
];
621 replace
+= " <b><font color='" + this.colors_
[i
%clen
].toHexString() + "'>"
622 + point
.name
+ "</font></b>:"
623 + this.round_(point
.yval
, 2);
625 this.attr_("labelsDiv").innerHTML
= replace
;
627 // Save last x position for callbacks.
630 // Draw colored circles over the center of each selected point
632 for (var i
= 0; i
< selPoints
.length
; i
++) {
634 ctx
.fillStyle
= this.colors_
[i
%clen
].toRGBString();
635 ctx
.arc(canvasx
, selPoints
[i
%clen
].canvasy
, circleSize
, 0, 360, false);
640 this.previousVerticalX_
= canvasx
;
645 * The mouse has left the canvas. Clear out whatever artifacts remain
646 * @param {Object} event the mouseout event from the browser.
649 Dygraph
.prototype.mouseOut_
= function(event
) {
650 // Get rid of the overlay data
651 var ctx
= this.canvas_
.getContext("2d");
652 ctx
.clearRect(0, 0, this.width_
, this.height_
);
653 this.attr_("labelsDiv").innerHTML
= "";
656 Dygraph
.zeropad
= function(x
) {
657 if (x
< 10) return "0" + x
; else return "" + x
;
661 * Return a string version of the hours, minutes and seconds portion of a date.
662 * @param {Number} date The JavaScript date (ms since epoch)
663 * @return {String} A time of the form "HH:MM:SS"
666 Dygraph
.prototype.hmsString_
= function(date
) {
667 var zeropad
= Dygraph
.zeropad
;
668 var d
= new Date(date
);
669 if (d
.getSeconds()) {
670 return zeropad(d
.getHours()) + ":" +
671 zeropad(d
.getMinutes()) + ":" +
672 zeropad(d
.getSeconds());
673 } else if (d
.getMinutes()) {
674 return zeropad(d
.getHours()) + ":" + zeropad(d
.getMinutes());
676 return zeropad(d
.getHours());
681 * Convert a JS date (millis since epoch) to YYYY/MM/DD
682 * @param {Number} date The JavaScript date (ms since epoch)
683 * @return {String} A date of the form "YYYY/MM/DD"
685 * TODO(danvk): why is this part of the prototype?
687 Dygraph
.dateString_
= function(date
, self
) {
688 var zeropad
= Dygraph
.zeropad
;
689 var d
= new Date(date
);
692 var year
= "" + d
.getFullYear();
693 // Get a 0 padded month string
694 var month
= zeropad(d
.getMonth() + 1); //months are 0-offset, sigh
695 // Get a 0 padded day string
696 var day
= zeropad(d
.getDate());
699 var frac
= d
.getHours() * 3600 + d
.getMinutes() * 60 + d
.getSeconds();
700 if (frac
) ret
= " " + self
.hmsString_(date
);
702 return year
+ "/" + month + "/" + day
+ ret
;
706 * Round a number to the specified number of digits past the decimal point.
707 * @param {Number} num The number to round
708 * @param {Number} places The number of decimals to which to round
709 * @return {Number} The rounded number
712 Dygraph
.prototype.round_
= function(num
, places
) {
713 var shift
= Math
.pow(10, places
);
714 return Math
.round(num
* shift
)/shift
;
718 * Fires when there's data available to be graphed.
719 * @param {String} data Raw CSV data to be plotted
722 Dygraph
.prototype.loadedEvent_
= function(data
) {
723 this.rawData_
= this.parseCSV_(data
);
724 this.drawGraph_(this.rawData_
);
727 Dygraph
.prototype.months
= ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
728 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
729 Dygraph
.prototype.quarters
= ["Jan", "Apr", "Jul", "Oct"];
732 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
735 Dygraph
.prototype.addXTicks_
= function() {
736 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
737 var startDate
, endDate
;
738 if (this.dateWindow_
) {
739 startDate
= this.dateWindow_
[0];
740 endDate
= this.dateWindow_
[1];
742 startDate
= this.rawData_
[0][0];
743 endDate
= this.rawData_
[this.rawData_
.length
- 1][0];
746 var xTicks
= this.attr_('xTicker')(startDate
, endDate
, this);
747 this.layout_
.updateOptions({xTicks
: xTicks
});
750 // Time granularity enumeration
751 Dygraph
.SECONDLY
= 0;
752 Dygraph
.TEN_SECONDLY
= 1;
753 Dygraph
.THIRTY_SECONDLY
= 2;
754 Dygraph
.MINUTELY
= 3;
755 Dygraph
.TEN_MINUTELY
= 4;
756 Dygraph
.THIRTY_MINUTELY
= 5;
758 Dygraph
.SIX_HOURLY
= 7;
761 Dygraph
.MONTHLY
= 10;
762 Dygraph
.QUARTERLY
= 11;
763 Dygraph
.BIANNUAL
= 12;
765 Dygraph
.DECADAL
= 14;
766 Dygraph
.NUM_GRANULARITIES
= 15;
768 Dygraph
.SHORT_SPACINGS
= [];
769 Dygraph
.SHORT_SPACINGS
[Dygraph
.SECONDLY
] = 1000 * 1;
770 Dygraph
.SHORT_SPACINGS
[Dygraph
.TEN_SECONDLY
] = 1000 * 10;
771 Dygraph
.SHORT_SPACINGS
[Dygraph
.THIRTY_SECONDLY
] = 1000 * 30;
772 Dygraph
.SHORT_SPACINGS
[Dygraph
.MINUTELY
] = 1000 * 60;
773 Dygraph
.SHORT_SPACINGS
[Dygraph
.TEN_MINUTELY
] = 1000 * 60 * 10;
774 Dygraph
.SHORT_SPACINGS
[Dygraph
.THIRTY_MINUTELY
] = 1000 * 60 * 30;
775 Dygraph
.SHORT_SPACINGS
[Dygraph
.HOURLY
] = 1000 * 3600;
776 Dygraph
.SHORT_SPACINGS
[Dygraph
.HOURLY
] = 1000 * 3600 * 6;
777 Dygraph
.SHORT_SPACINGS
[Dygraph
.DAILY
] = 1000 * 86400;
778 Dygraph
.SHORT_SPACINGS
[Dygraph
.WEEKLY
] = 1000 * 604800;
782 // If we used this time granularity, how many ticks would there be?
783 // This is only an approximation, but it's generally good enough.
785 Dygraph
.prototype.NumXTicks
= function(start_time
, end_time
, granularity
) {
786 if (granularity
< Dygraph
.MONTHLY
) {
787 // Generate one tick mark for every fixed interval of time.
788 var spacing
= Dygraph
.SHORT_SPACINGS
[granularity
];
789 return Math
.floor(0.5 + 1.0 * (end_time
- start_time
) / spacing
);
791 var year_mod
= 1; // e.g. to only print one point every 10 years.
793 if (granularity
== Dygraph
.QUARTERLY
) num_months
= 3;
794 if (granularity
== Dygraph
.BIANNUAL
) num_months
= 2;
795 if (granularity
== Dygraph
.ANNUAL
) num_months
= 1;
796 if (granularity
== Dygraph
.DECADAL
) { num_months
= 1; year_mod
= 10; }
798 var msInYear
= 365.2524 * 24 * 3600 * 1000;
799 var num_years
= 1.0 * (end_time
- start_time
) / msInYear
;
800 return Math
.floor(0.5 + 1.0 * num_years
* num_months
/ year_mod
);
806 // Construct an x-axis of nicely-formatted times on meaningful boundaries
807 // (e.g. 'Jan 09' rather than 'Jan 22, 2009').
809 // Returns an array containing {v: millis, label: label} dictionaries.
811 Dygraph
.prototype.GetXAxis
= function(start_time
, end_time
, granularity
) {
813 if (granularity
< Dygraph
.MONTHLY
) {
814 // Generate one tick mark for every fixed interval of time.
815 var spacing
= Dygraph
.SHORT_SPACINGS
[granularity
];
816 var format
= '%d%b'; // e.g. "1 Jan"
817 // TODO(danvk): be smarter about making sure this really hits a "nice" time.
818 if (granularity
< Dygraph
.HOURLY
) {
819 start_time
= spacing
* Math
.floor(0.5 + start_time
/ spacing
);
821 for (var t
= start_time
; t
<= end_time
; t
+= spacing
) {
823 var frac
= d
.getHours() * 3600 + d
.getMinutes() * 60 + d
.getSeconds();
824 if (frac
== 0 || granularity
>= Dygraph
.DAILY
) {
825 // the extra hour covers DST problems.
826 ticks
.push({ v
:t
, label
: new Date(t
+ 3600*1000).strftime(format
) });
828 ticks
.push({ v
:t
, label
: this.hmsString_(t
) });
832 // Display a tick mark on the first of a set of months of each year.
833 // Years get a tick mark iff y % year_mod == 0. This is useful for
834 // displaying a tick mark once every 10 years, say, on long time scales.
836 var year_mod
= 1; // e.g. to only print one point every 10 years.
838 if (granularity
== Dygraph
.MONTHLY
) {
839 months
= [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
840 } else if (granularity
== Dygraph
.QUARTERLY
) {
841 months
= [ 0, 3, 6, 9 ];
842 } else if (granularity
== Dygraph
.BIANNUAL
) {
844 } else if (granularity
== Dygraph
.ANNUAL
) {
846 } else if (granularity
== Dygraph
.DECADAL
) {
851 var start_year
= new Date(start_time
).getFullYear();
852 var end_year
= new Date(end_time
).getFullYear();
853 var zeropad
= Dygraph
.zeropad
;
854 for (var i
= start_year
; i
<= end_year
; i
++) {
855 if (i
% year_mod
!= 0) continue;
856 for (var j
= 0; j
< months
.length
; j
++) {
857 var date_str
= i
+ "/" + zeropad(1 + months[j]) + "/01";
858 var t
= Date
.parse(date_str
);
859 if (t
< start_time
|| t
> end_time
) continue;
860 ticks
.push({ v
:t
, label
: new Date(t
).strftime('%b %y') });
870 * Add ticks to the x-axis based on a date range.
871 * @param {Number} startDate Start of the date window (millis since epoch)
872 * @param {Number} endDate End of the date window (millis since epoch)
873 * @return {Array.<Object>} Array of {label, value} tuples.
876 Dygraph
.dateTicker
= function(startDate
, endDate
, self
) {
878 for (var i
= 0; i
< Dygraph
.NUM_GRANULARITIES
; i
++) {
879 var num_ticks
= self
.NumXTicks(startDate
, endDate
, i
);
880 if (self
.width_
/ num_ticks
>= self
.attr_('pixelsPerXLabel')) {
887 return self
.GetXAxis(startDate
, endDate
, chosen
);
889 // TODO(danvk): signal error.
894 * Add ticks when the x axis has numbers on it (instead of dates)
895 * @param {Number} startDate Start of the date window (millis since epoch)
896 * @param {Number} endDate End of the date window (millis since epoch)
897 * @return {Array.<Object>} Array of {label, value} tuples.
900 Dygraph
.numericTicks
= function(minV
, maxV
, self
) {
902 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
903 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks
).
904 // The first spacing greater than pixelsPerYLabel is what we use.
905 var mults
= [1, 2, 5];
906 var scale
, low_val
, high_val
, nTicks
;
907 // TODO(danvk): make it possible to set this for x- and y-axes independently.
908 var pixelsPerTick
= self
.attr_('pixelsPerYLabel');
909 for (var i
= -10; i
< 50; i
++) {
910 var base_scale
= Math
.pow(10, i
);
911 for (var j
= 0; j
< mults
.length
; j
++) {
912 scale
= base_scale
* mults
[j
];
913 low_val
= Math
.floor(minV
/ scale
) * scale
;
914 high_val
= Math
.ceil(maxV
/ scale
) * scale
;
915 nTicks
= (high_val
- low_val
) / scale
;
916 var spacing
= self
.height_
/ nTicks
;
917 // wish I could break out of both loops at once...
918 if (spacing
> pixelsPerTick
) break;
920 if (spacing
> pixelsPerTick
) break;
923 // Construct labels for the ticks
925 for (var i
= 0; i
< nTicks
; i
++) {
926 var tickV
= low_val
+ i
* scale
;
927 var label
= self
.round_(tickV
, 2);
928 if (self
.attr_("labelsKMB")) {
930 if (tickV
>= k
*k
*k
) {
931 label
= self
.round_(tickV
/(k
*k
*k
), 1) + "B";
932 } else if (tickV
>= k
*k
) {
933 label
= self
.round_(tickV
/(k
*k
), 1) + "M";
934 } else if (tickV
>= k
) {
935 label
= self
.round_(tickV
/k
, 1) + "K";
938 ticks
.push( {label
: label
, v
: tickV
} );
944 * Adds appropriate ticks on the y-axis
945 * @param {Number} minY The minimum Y value in the data set
946 * @param {Number} maxY The maximum Y value in the data set
949 Dygraph
.prototype.addYTicks_
= function(minY
, maxY
) {
950 // Set the number of ticks so that the labels are human-friendly.
951 // TODO(danvk): make this an attribute as well.
952 var ticks
= Dygraph
.numericTicks(minY
, maxY
, this);
953 this.layout_
.updateOptions( { yAxis
: [minY
, maxY
],
958 * Update the graph with new data. Data is in the format
959 * [ [date1, val1, val2, ...], [date2, val1, val2, ...] if errorBars=false
960 * or, if errorBars=true,
961 * [ [date1, [val1,stddev1], [val2,stddev2], ...], [date2, ...], ...]
962 * @param {Array.<Object>} data The data (see above)
965 Dygraph
.prototype.drawGraph_
= function(data
) {
967 this.layout_
.removeAllDatasets();
970 // Loop over all fields in the dataset
971 for (var i
= 1; i
< data
[0].length
; i
++) {
973 for (var j
= 0; j
< data
.length
; j
++) {
974 var date
= data
[j
][0];
975 series
[j
] = [date
, data
[j
][i
]];
977 series
= this.rollingAverage(series
, this.rollPeriod_
);
979 // Prune down to the desired range, if necessary (for zooming)
980 var bars
= this.attr_("errorBars") || this.customBars_
;
981 if (this.dateWindow_
) {
982 var low
= this.dateWindow_
[0];
983 var high
= this.dateWindow_
[1];
985 for (var k
= 0; k
< series
.length
; k
++) {
986 if (series
[k
][0] >= low
&& series
[k
][0] <= high
) {
987 pruned
.push(series
[k
]);
988 var y
= bars
? series
[k
][1][0] : series
[k
][1];
989 if (maxY
== null || y
> maxY
) maxY
= y
;
994 if (!this.customBars_
) {
995 for (var j
= 0; j
< series
.length
; j
++) {
996 var y
= bars
? series
[j
][1][0] : series
[j
][1];
997 if (maxY
== null || y
> maxY
) {
998 maxY
= bars
? y
+ series
[j
][1][1] : y
;
1002 // With custom bars, maxY is the max of the high values.
1003 for (var j
= 0; j
< series
.length
; j
++) {
1004 var y
= series
[j
][1][0];
1005 var high
= series
[j
][1][2];
1006 if (high
> y
) y
= high
;
1007 if (maxY
== null || y
> maxY
) {
1016 for (var j
=0; j
<series
.length
; j
++)
1017 vals
[j
] = [series
[j
][0],
1018 series
[j
][1][0], series
[j
][1][1], series
[j
][1][2]];
1019 this.layout_
.addDataset(this.attr_("labels")[i
], vals
);
1021 this.layout_
.addDataset(this.attr_("labels")[i
], series
);
1025 // Use some heuristics to come up with a good maxY value, unless it's been
1026 // set explicitly by the user.
1027 if (this.valueRange_
!= null) {
1028 this.addYTicks_(this.valueRange_
[0], this.valueRange_
[1]);
1030 // Add some padding and round up to an integer to be human-friendly.
1032 if (maxY
<= 0.0) maxY
= 1.0;
1033 this.addYTicks_(0, maxY
);
1038 // Tell PlotKit to use this new data and render itself
1039 this.layout_
.evaluateWithError();
1040 this.plotter_
.clear();
1041 this.plotter_
.render();
1042 this.canvas_
.getContext('2d').clearRect(0, 0,
1043 this.canvas_
.width
, this.canvas_
.height
);
1047 * Calculates the rolling average of a data set.
1048 * If originalData is [label, val], rolls the average of those.
1049 * If originalData is [label, [, it's interpreted as [value, stddev]
1050 * and the roll is returned in the same form, with appropriately reduced
1051 * stddev for each value.
1052 * Note that this is where fractional input (i.e. '5/10') is converted into
1054 * @param {Array} originalData The data in the appropriate format (see above)
1055 * @param {Number} rollPeriod The number of days over which to average the data
1057 Dygraph
.prototype.rollingAverage
= function(originalData
, rollPeriod
) {
1058 if (originalData
.length
< 2)
1059 return originalData
;
1060 var rollPeriod
= Math
.min(rollPeriod
, originalData
.length
- 1);
1061 var rollingData
= [];
1062 var sigma
= this.attr_("sigma");
1064 if (this.fractions_
) {
1066 var den
= 0; // numerator/denominator
1068 for (var i
= 0; i
< originalData
.length
; i
++) {
1069 num
+= originalData
[i
][1][0];
1070 den
+= originalData
[i
][1][1];
1071 if (i
- rollPeriod
>= 0) {
1072 num
-= originalData
[i
- rollPeriod
][1][0];
1073 den
-= originalData
[i
- rollPeriod
][1][1];
1076 var date
= originalData
[i
][0];
1077 var value
= den
? num
/ den
: 0.0;
1078 if (this.attr_("errorBars")) {
1079 if (this.wilsonInterval_
) {
1080 // For more details on this confidence interval, see:
1081 // http://en.wikipedia.org/wiki
/Binomial_confidence_interval
1083 var p
= value
< 0 ? 0 : value
, n
= den
;
1084 var pm
= sigma
* Math
.sqrt(p
*(1-p
)/n + sigma*sigma/(4*n
*n
));
1085 var denom
= 1 + sigma
* sigma
/ den
;
1086 var low
= (p
+ sigma
* sigma
/ (2 * den) - pm) / denom
;
1087 var high
= (p
+ sigma
* sigma
/ (2 * den) + pm) / denom
;
1088 rollingData
[i
] = [date
,
1089 [p
* mult
, (p
- low
) * mult
, (high
- p
) * mult
]];
1091 rollingData
[i
] = [date
, [0, 0, 0]];
1094 var stddev
= den
? sigma
* Math
.sqrt(value
* (1 - value
) / den
) : 1.0;
1095 rollingData
[i
] = [date
, [mult
* value
, mult
* stddev
, mult
* stddev
]];
1098 rollingData
[i
] = [date
, mult
* value
];
1101 } else if (this.customBars_
) {
1106 for (var i
= 0; i
< originalData
.length
; i
++) {
1107 var data
= originalData
[i
][1];
1109 rollingData
[i
] = [originalData
[i
][0], [y
, y
- data
[0], data
[2] - y
]];
1115 if (i
- rollPeriod
>= 0) {
1116 var prev
= originalData
[i
- rollPeriod
];
1122 rollingData
[i
] = [originalData
[i
][0], [ 1.0 * mid
/ count
,
1123 1.0 * (mid
- low
) / count
,
1124 1.0 * (high
- mid
) / count
]];
1127 // Calculate the rolling average for the first rollPeriod - 1 points where
1128 // there is not enough data to roll over the full number of days
1129 var num_init_points
= Math
.min(rollPeriod
- 1, originalData
.length
- 2);
1130 if (!this.attr_("errorBars")){
1131 for (var i
= 0; i
< num_init_points
; i
++) {
1133 for (var j
= 0; j
< i
+ 1; j
++)
1134 sum
+= originalData
[j
][1];
1135 rollingData
[i
] = [originalData
[i
][0], sum
/ (i
+ 1)];
1137 // Calculate the rolling average for the remaining points
1138 for (var i
= Math
.min(rollPeriod
- 1, originalData
.length
- 2);
1139 i
< originalData
.length
;
1142 for (var j
= i
- rollPeriod
+ 1; j
< i
+ 1; j
++)
1143 sum
+= originalData
[j
][1];
1144 rollingData
[i
] = [originalData
[i
][0], sum
/ rollPeriod
];
1147 for (var i
= 0; i
< num_init_points
; i
++) {
1150 for (var j
= 0; j
< i
+ 1; j
++) {
1151 sum
+= originalData
[j
][1][0];
1152 variance
+= Math
.pow(originalData
[j
][1][1], 2);
1154 var stddev
= Math
.sqrt(variance
)/(i
+1);
1155 rollingData
[i
] = [originalData
[i
][0],
1156 [sum
/(i
+1), sigma
* stddev
, sigma
* stddev
]];
1158 // Calculate the rolling average for the remaining points
1159 for (var i
= Math
.min(rollPeriod
- 1, originalData
.length
- 2);
1160 i
< originalData
.length
;
1164 for (var j
= i
- rollPeriod
+ 1; j
< i
+ 1; j
++) {
1165 sum
+= originalData
[j
][1][0];
1166 variance
+= Math
.pow(originalData
[j
][1][1], 2);
1168 var stddev
= Math
.sqrt(variance
) / rollPeriod
;
1169 rollingData
[i
] = [originalData
[i
][0],
1170 [sum
/ rollPeriod
, sigma
* stddev
, sigma
* stddev
]];
1179 * Parses a date, returning the number of milliseconds since epoch. This can be
1180 * passed in as an xValueParser in the Dygraph constructor.
1181 * TODO(danvk): enumerate formats that this understands.
1182 * @param {String} A date in YYYYMMDD format.
1183 * @return {Number} Milliseconds since epoch.
1186 Dygraph
.dateParser
= function(dateStr
, self
) {
1189 if (dateStr
.length
== 10 && dateStr
.search("-") != -1) { // e.g. '2009-07-12'
1190 dateStrSlashed
= dateStr
.replace("-", "/", "g");
1191 while (dateStrSlashed
.search("-") != -1) {
1192 dateStrSlashed
= dateStrSlashed
.replace("-", "/");
1194 d
= Date
.parse(dateStrSlashed
);
1195 } else if (dateStr
.length
== 8) { // e.g. '20090712'
1196 // TODO(danvk): remove support for this format. It's confusing.
1197 dateStrSlashed
= dateStr
.substr(0,4) + "/" + dateStr
.substr(4,2)
1198 + "/" + dateStr
.substr(6,2);
1199 d
= Date
.parse(dateStrSlashed
);
1201 // Any format that Date.parse will accept, e.g. "2009/07/12" or
1202 // "2009/07/12 12:34:56"
1203 d
= Date
.parse(dateStr
);
1206 if (!d
|| isNaN(d
)) {
1207 self
.error("Couldn't parse " + dateStr
+ " as a date");
1213 * Detects the type of the str (date or numeric) and sets the various
1214 * formatting attributes in this.attrs_ based on this type.
1215 * @param {String} str An x value.
1218 Dygraph
.prototype.detectTypeFromString_
= function(str
) {
1220 if (str
.indexOf('-') >= 0 ||
1221 str
.indexOf('/') >= 0 ||
1222 isNaN(parseFloat(str
))) {
1224 } else if (str
.length
== 8 && str
> '19700101' && str
< '20371231') {
1225 // TODO(danvk): remove support for this format.
1230 this.attrs_
.xValueFormatter
= Dygraph
.dateString_
;
1231 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
1232 this.attrs_
.xTicker
= Dygraph
.dateTicker
;
1234 this.attrs_
.xValueFormatter
= function(x
) { return x
; };
1235 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
1236 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
1241 * Parses a string in a special csv format. We expect a csv file where each
1242 * line is a date point, and the first field in each line is the date string.
1243 * We also expect that all remaining fields represent series.
1244 * if the errorBars attribute is set, then interpret the fields as:
1245 * date, series1, stddev1, series2, stddev2, ...
1246 * @param {Array.<Object>} data See above.
1249 * @return Array.<Object> An array with one entry for each row. These entries
1250 * are an array of cells in that row. The first entry is the parsed x-value for
1251 * the row. The second, third, etc. are the y-values. These can take on one of
1252 * three forms, depending on the CSV and constructor parameters:
1254 * 2. [ value, stddev ]
1255 * 3. [ low value, center value, high value ]
1257 Dygraph
.prototype.parseCSV_
= function(data
) {
1259 var lines
= data
.split("\n");
1261 if (this.labelsFromCSV_
) {
1263 this.attrs_
.labels
= lines
[0].split(",");
1267 var defaultParserSet
= false; // attempt to auto-detect x value type
1268 var expectedCols
= this.attr_("labels").length
;
1269 for (var i
= start
; i
< lines
.length
; i
++) {
1270 var line
= lines
[i
];
1271 if (line
.length
== 0) continue; // skip blank lines
1272 var inFields
= line
.split(',');
1273 if (inFields
.length
< 2) continue;
1276 if (!defaultParserSet
) {
1277 this.detectTypeFromString_(inFields
[0]);
1278 xParser
= this.attr_("xValueParser");
1279 defaultParserSet
= true;
1281 fields
[0] = xParser(inFields
[0], this);
1283 // If fractions are expected, parse the numbers as "A/B
"
1284 if (this.fractions_) {
1285 for (var j = 1; j < inFields.length; j++) {
1286 // TODO(danvk): figure out an appropriate way to flag parse errors.
1287 var vals = inFields[j].split("/");
1288 fields[j] = [parseFloat(vals[0]), parseFloat(vals[1])];
1290 } else if (this.attr_("errorBars
")) {
1291 // If there are error bars, values are (value, stddev) pairs
1292 for (var j = 1; j < inFields.length; j += 2)
1293 fields[(j + 1) / 2] = [parseFloat(inFields[j]),
1294 parseFloat(inFields[j + 1])];
1295 } else if (this.customBars_) {
1296 // Bars are a low;center;high tuple
1297 for (var j = 1; j < inFields.length; j++) {
1298 var vals = inFields[j].split(";");
1299 fields[j] = [ parseFloat(vals[0]),
1300 parseFloat(vals[1]),
1301 parseFloat(vals[2]) ];
1304 // Values are just numbers
1305 for (var j = 1; j < inFields.length; j++) {
1306 fields[j] = parseFloat(inFields[j]);
1311 if (fields.length != expectedCols) {
1312 this.error("Number of columns
in line
" + i + " (" + fields.length +
1313 ") does not agree
with number of
labels (" + expectedCols +
1321 * The user has provided their data as a pre-packaged JS array. If the x values
1322 * are numeric, this is the same as dygraphs' internal format. If the x values
1323 * are dates, we need to convert them from Date objects to ms since epoch.
1324 * @param {Array.<Object>} data
1325 * @return {Array.<Object>} data with numeric x values.
1327 Dygraph.prototype.parseArray_ = function(data) {
1328 // Peek at the first x value to see if it's numeric.
1329 if (data.length == 0) {
1330 this.error("Can
't plot empty data set");
1333 if (data[0].length == 0) {
1334 this.error("Data set cannot contain an empty row");
1338 if (this.attr_("labels") == null) {
1339 this.warn("Using default labels. Set labels explicitly via 'labels
' " +
1340 "in the options parameter");
1341 this.attrs_.labels = [ "X" ];
1342 for (var i = 1; i < data[0].length; i++) {
1343 this.attrs_.labels.push("Y" + i);
1347 if (MochiKit.Base.isDateLike(data[0][0])) {
1348 // Some intelligent defaults for a date x-axis.
1349 this.attrs_.xValueFormatter = Dygraph.dateString_;
1350 this.attrs_.xTicker = Dygraph.dateTicker;
1352 // Assume they're all dates
.
1353 var parsedData
= MochiKit
.Base
.clone(data
);
1354 for (var i
= 0; i
< data
.length
; i
++) {
1355 if (parsedData
[i
].length
== 0) {
1356 this.error("Row " << (1 + i
) << " of data is empty");
1359 if (parsedData
[i
][0] == null
1360 || typeof(parsedData
[i
][0].getTime
) != 'function') {
1361 this.error("x value in row " << (1 + i
) << " is not a Date");
1364 parsedData
[i
][0] = parsedData
[i
][0].getTime();
1368 // Some intelligent defaults for a numeric x-axis.
1369 this.attrs_
.xValueFormatter
= function(x
) { return x
; };
1370 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
1376 * Parses a DataTable object from gviz.
1377 * The data is expected to have a first column that is either a date or a
1378 * number. All subsequent columns must be numbers. If there is a clear mismatch
1379 * between this.xValueParser_ and the type of the first column, it will be
1380 * fixed. Returned value is in the same format as return value of parseCSV_.
1381 * @param {Array.<Object>} data See above.
1384 Dygraph
.prototype.parseDataTable_
= function(data
) {
1385 var cols
= data
.getNumberOfColumns();
1386 var rows
= data
.getNumberOfRows();
1388 // Read column labels
1390 for (var i
= 0; i
< cols
; i
++) {
1391 labels
.push(data
.getColumnLabel(i
));
1393 this.attrs_
.labels
= labels
;
1395 var indepType
= data
.getColumnType(0);
1396 if (indepType
== 'date') {
1397 this.attrs_
.xValueFormatter
= Dygraph
.dateString_
;
1398 this.attrs_
.xValueParser
= Dygraph
.dateParser
;
1399 this.attrs_
.xTicker
= Dygraph
.dateTicker
;
1400 } else if (indepType
== 'number') {
1401 this.attrs_
.xValueFormatter
= function(x
) { return x
; };
1402 this.attrs_
.xValueParser
= function(x
) { return parseFloat(x
); };
1403 this.attrs_
.xTicker
= Dygraph
.numericTicks
;
1405 this.error("only 'date' and 'number' types are supported for column 1 " +
1406 "of DataTable input (Got '" + indepType
+ "')");
1411 for (var i
= 0; i
< rows
; i
++) {
1413 if (!data
.getValue(i
, 0)) continue;
1414 if (indepType
== 'date') {
1415 row
.push(data
.getValue(i
, 0).getTime());
1417 row
.push(data
.getValue(i
, 0));
1419 var any_data
= false;
1420 for (var j
= 1; j
< cols
; j
++) {
1421 row
.push(data
.getValue(i
, j
));
1422 if (data
.getValue(i
, j
)) any_data
= true;
1424 if (any_data
) ret
.push(row
);
1430 * Get the CSV data. If it's in a function, call that function. If it's in a
1431 * file, do an XMLHttpRequest to get it.
1434 Dygraph
.prototype.start_
= function() {
1435 if (typeof this.file_
== 'function') {
1436 // CSV string. Pretend we got it via XHR.
1437 this.loadedEvent_(this.file_());
1438 } else if (MochiKit
.Base
.isArrayLike(this.file_
)) {
1439 this.rawData_
= this.parseArray_(this.file_
);
1440 this.drawGraph_(this.rawData_
);
1441 } else if (typeof this.file_
== 'object' &&
1442 typeof this.file_
.getColumnRange
== 'function') {
1443 // must be a DataTable from gviz.
1444 this.rawData_
= this.parseDataTable_(this.file_
);
1445 this.drawGraph_(this.rawData_
);
1446 } else if (typeof this.file_
== 'string') {
1447 // Heuristic: a newline means it's CSV data. Otherwise it's an URL.
1448 if (this.file_
.indexOf('\n') >= 0) {
1449 this.loadedEvent_(this.file_
);
1451 var req
= new XMLHttpRequest();
1453 req
.onreadystatechange
= function () {
1454 if (req
.readyState
== 4) {
1455 if (req
.status
== 200) {
1456 caller
.loadedEvent_(req
.responseText
);
1461 req
.open("GET", this.file_
, true);
1465 this.error("Unknown data format: " + (typeof this.file_
));
1470 * Changes various properties of the graph. These can include:
1472 * <li>file: changes the source data for the graph</li>
1473 * <li>errorBars: changes whether the data contains stddev</li>
1475 * @param {Object} attrs The new properties and values
1477 Dygraph
.prototype.updateOptions
= function(attrs
) {
1478 // TODO(danvk): this is a mess. Rethink this function.
1479 if (attrs
.customBars
) {
1480 this.customBars_
= attrs
.customBars
;
1482 if (attrs
.rollPeriod
) {
1483 this.rollPeriod_
= attrs
.rollPeriod
;
1485 if (attrs
.dateWindow
) {
1486 this.dateWindow_
= attrs
.dateWindow
;
1488 if (attrs
.valueRange
) {
1489 this.valueRange_
= attrs
.valueRange
;
1491 MochiKit
.Base
.update(this.user_attrs_
, attrs
);
1493 this.labelsFromCSV_
= (this.attr_("labels") == null);
1495 // TODO(danvk): this doesn't match the constructor logic
1496 this.layout_
.updateOptions({ 'errorBars': this.attr_("errorBars") });
1497 if (attrs
['file'] && attrs
['file'] != this.file_
) {
1498 this.file_
= attrs
['file'];
1501 this.drawGraph_(this.rawData_
);
1506 * Adjusts the number of days in the rolling average. Updates the graph to
1507 * reflect the new averaging period.
1508 * @param {Number} length Number of days over which to average the data.
1510 Dygraph
.prototype.adjustRoll
= function(length
) {
1511 this.rollPeriod_
= length
;
1512 this.drawGraph_(this.rawData_
);
1517 * A wrapper around Dygraph that implements the gviz API.
1518 * @param {Object} container The DOM object the visualization should live in.
1520 Dygraph
.GVizChart
= function(container
) {
1521 this.container
= container
;
1524 Dygraph
.GVizChart
.prototype.draw
= function(data
, options
) {
1525 this.container
.innerHTML
= '';
1526 this.date_graph
= new Dygraph(this.container
, data
, options
);
1529 // Older pages may still use this name.
1530 DateGraph
= Dygraph
;