Rewrite numericTicks to consider chart height. Fixes issue 26.
[dygraphs.git] / dygraph.js
1 // Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
2 // All Rights Reserved.
3
4 /**
5 * @fileoverview Creates an interactive, zoomable graph based on a CSV file or
6 * string. DateGraph can handle multiple series with or without error bars. The
7 * date/value ranges will be automatically set. DateGraph uses the
8 * <canvas> tag, so it only works in FF1.5+.
9 * @author danvdk@gmail.com (Dan Vanderkam)
10
11 Usage:
12 <div id="graphdiv" style="width:800px; height:500px;"></div>
13 <script type="text/javascript">
14 new DateGraph(document.getElementById("graphdiv"),
15 "datafile.csv",
16 ["Series 1", "Series 2"],
17 { }); // options
18 </script>
19
20 The CSV file is of the form
21
22 YYYYMMDD,A1,B1,C1
23 YYYYMMDD,A2,B2,C2
24
25 If null is passed as the third parameter (series names), then the first line
26 of the CSV file is assumed to contain names for each series.
27
28 If the 'errorBars' option is set in the constructor, the input should be of
29 the form
30
31 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
32 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
33
34 If the 'fractions' option is set, the input should be of the form:
35
36 YYYYMMDD,A1/B1,A2/B2,...
37 YYYYMMDD,A1/B1,A2/B2,...
38
39 And error bars will be calculated automatically using a binomial distribution.
40
41 For further documentation and examples, see http://www/~danvk/dg/
42
43 */
44
45 /**
46 * An interactive, zoomable graph
47 * @param {String | Function} file A file containing CSV data or a function that
48 * returns this data. The expected format for each line is
49 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
50 * YYYYMMDD,val1,stddev1,val2,stddev2,...
51 * @param {Array.<String>} labels Labels for the data series
52 * @param {Object} attrs Various other attributes, e.g. errorBars determines
53 * whether the input data contains error ranges.
54 */
55 DateGraph = function(div, file, labels, attrs) {
56 if (arguments.length > 0)
57 this.__init__(div, file, labels, attrs);
58 };
59
60 DateGraph.NAME = "DateGraph";
61 DateGraph.VERSION = "1.1";
62 DateGraph.__repr__ = function() {
63 return "[" + this.NAME + " " + this.VERSION + "]";
64 };
65 DateGraph.toString = function() {
66 return this.__repr__();
67 };
68
69 // Various default values
70 DateGraph.DEFAULT_ROLL_PERIOD = 1;
71 DateGraph.DEFAULT_WIDTH = 480;
72 DateGraph.DEFAULT_HEIGHT = 320;
73 DateGraph.DEFAULT_STROKE_WIDTH = 1.0;
74 DateGraph.AXIS_LINE_WIDTH = 0.3;
75
76 // Default attribute values.
77 DateGraph.DEFAULT_ATTRS = {
78 highlightCircleSize: 3,
79 pixelsPerXLabel: 60,
80 pixelsPerYLabel: 30,
81 labelsDivWidth: 250,
82 labelsDivStyles: {
83 // TODO(danvk): move defaults from createStatusMessage_ here.
84 }
85
86 // TODO(danvk): default padding
87 };
88
89 /**
90 * Initializes the DateGraph. This creates a new DIV and constructs the PlotKit
91 * and interaction &lt;canvas&gt; inside of it. See the constructor for details
92 * on the parameters.
93 * @param {String | Function} file Source data
94 * @param {Array.<String>} labels Names of the data series
95 * @param {Object} attrs Miscellaneous other options
96 * @private
97 */
98 DateGraph.prototype.__init__ = function(div, file, labels, attrs) {
99 // Copy the important bits into the object
100 // TODO(danvk): most of these should just stay in the attrs_ dictionary.
101 this.maindiv_ = div;
102 this.labels_ = labels;
103 this.file_ = file;
104 this.rollPeriod_ = attrs.rollPeriod || DateGraph.DEFAULT_ROLL_PERIOD;
105 this.previousVerticalX_ = -1;
106 this.width_ = parseInt(div.style.width, 10);
107 this.height_ = parseInt(div.style.height, 10);
108 this.errorBars_ = attrs.errorBars || false;
109 this.fractions_ = attrs.fractions || false;
110 this.strokeWidth_ = attrs.strokeWidth || DateGraph.DEFAULT_STROKE_WIDTH;
111 this.dateWindow_ = attrs.dateWindow || null;
112 this.valueRange_ = attrs.valueRange || null;
113 this.labelsSeparateLines = attrs.labelsSeparateLines || false;
114 this.labelsDiv_ = attrs.labelsDiv || null;
115 this.labelsKMB_ = attrs.labelsKMB || false;
116 this.xValueParser_ = attrs.xValueParser || DateGraph.prototype.dateParser;
117 this.xValueFormatter_ = attrs.xValueFormatter ||
118 DateGraph.prototype.dateString_;
119 this.xTicker_ = attrs.xTicker || DateGraph.prototype.dateTicker;
120 this.sigma_ = attrs.sigma || 2.0;
121 this.wilsonInterval_ = attrs.wilsonInterval || true;
122 this.customBars_ = attrs.customBars || false;
123
124 this.attrs_ = {};
125 MochiKit.Base.update(this.attrs_, DateGraph.DEFAULT_ATTRS);
126 MochiKit.Base.update(this.attrs_, attrs);
127
128 if (typeof this.attrs_.pixelsPerXLabel == 'undefined') {
129 this.attrs_.pixelsPerXLabel = 60;
130 }
131
132 // Make a note of whether labels will be pulled from the CSV file.
133 this.labelsFromCSV_ = (this.labels_ == null);
134 if (this.labels_ == null)
135 this.labels_ = [];
136
137 // Prototype of the callback is "void clickCallback(event, date)"
138 this.clickCallback_ = attrs.clickCallback || null;
139
140 // Prototype of zoom callback is "void dragCallback(minDate, maxDate)"
141 this.zoomCallback_ = attrs.zoomCallback || null;
142
143 // Create the containing DIV and other interactive elements
144 this.createInterface_();
145
146 // Create the PlotKit grapher
147 this.layoutOptions_ = { 'errorBars': (this.errorBars_ || this.customBars_),
148 'xOriginIsZero': false };
149 MochiKit.Base.update(this.layoutOptions_, attrs);
150 this.setColors_(attrs);
151
152 this.layout_ = new DateGraphLayout(this.layoutOptions_);
153
154 this.renderOptions_ = { colorScheme: this.colors_,
155 strokeColor: null,
156 strokeWidth: this.strokeWidth_,
157 axisLabelFontSize: 14,
158 axisLineWidth: DateGraph.AXIS_LINE_WIDTH };
159 MochiKit.Base.update(this.renderOptions_, attrs);
160 this.plotter_ = new DateGraphCanvasRenderer(this.hidden_, this.layout_,
161 this.renderOptions_);
162
163 this.createStatusMessage_();
164 this.createRollInterface_();
165 this.createDragInterface_();
166
167 // connect(window, 'onload', this, function(e) { this.start_(); });
168 this.start_();
169 };
170
171 /**
172 * Returns the current rolling period, as set by the user or an option.
173 * @return {Number} The number of days in the rolling window
174 */
175 DateGraph.prototype.rollPeriod = function() {
176 return this.rollPeriod_;
177 }
178
179 /**
180 * Generates interface elements for the DateGraph: a containing div, a div to
181 * display the current point, and a textbox to adjust the rolling average
182 * period.
183 * @private
184 */
185 DateGraph.prototype.createInterface_ = function() {
186 // Create the all-enclosing graph div
187 var enclosing = this.maindiv_;
188
189 this.graphDiv = MochiKit.DOM.DIV( { style: { 'width': this.width_ + "px",
190 'height': this.height_ + "px"
191 }});
192 appendChildNodes(enclosing, this.graphDiv);
193
194 // Create the canvas to store
195 var canvas = MochiKit.DOM.CANVAS;
196 this.canvas_ = canvas( { style: { 'position': 'absolute' },
197 width: this.width_,
198 height: this.height_});
199 appendChildNodes(this.graphDiv, this.canvas_);
200
201 this.hidden_ = this.createPlotKitCanvas_(this.canvas_);
202 connect(this.hidden_, 'onmousemove', this, function(e) { this.mouseMove_(e) });
203 connect(this.hidden_, 'onmouseout', this, function(e) { this.mouseOut_(e) });
204 }
205
206 /**
207 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
208 * this particular canvas. All DateGraph work is done on this.canvas_.
209 * @param {Object} canvas The DateGraph canvas to over which to overlay the plot
210 * @return {Object} The newly-created canvas
211 * @private
212 */
213 DateGraph.prototype.createPlotKitCanvas_ = function(canvas) {
214 var h = document.createElement("canvas");
215 h.style.position = "absolute";
216 h.style.top = canvas.style.top;
217 h.style.left = canvas.style.left;
218 h.width = this.width_;
219 h.height = this.height_;
220 MochiKit.DOM.appendChildNodes(this.graphDiv, h);
221 return h;
222 };
223
224 /**
225 * Generate a set of distinct colors for the data series. This is done with a
226 * color wheel. Saturation/Value are customizable, and the hue is
227 * equally-spaced around the color wheel. If a custom set of colors is
228 * specified, that is used instead.
229 * @param {Object} attrs Various attributes, e.g. saturation and value
230 * @private
231 */
232 DateGraph.prototype.setColors_ = function(attrs) {
233 var num = this.labels_.length;
234 this.colors_ = [];
235 if (!attrs.colors) {
236 var sat = attrs.colorSaturation || 1.0;
237 var val = attrs.colorValue || 0.5;
238 for (var i = 1; i <= num; i++) {
239 var hue = (1.0*i/(1+num));
240 this.colors_.push( MochiKit.Color.Color.fromHSV(hue, sat, val) );
241 }
242 } else {
243 for (var i = 0; i < num; i++) {
244 var colorStr = attrs.colors[i % attrs.colors.length];
245 this.colors_.push( MochiKit.Color.Color.fromString(colorStr) );
246 }
247 }
248 }
249
250 /**
251 * Create the div that contains information on the selected point(s)
252 * This goes in the top right of the canvas, unless an external div has already
253 * been specified.
254 * @private
255 */
256 DateGraph.prototype.createStatusMessage_ = function(){
257 if (!this.labelsDiv_) {
258 var divWidth = this.attrs_.labelsDivWidth;
259 var messagestyle = { "style": {
260 "position": "absolute",
261 "fontSize": "14px",
262 "zIndex": 10,
263 "width": divWidth + "px",
264 "top": "0px",
265 "left": this.width_ - divWidth + "px",
266 "background": "white",
267 "textAlign": "left",
268 "overflow": "hidden"}};
269 MochiKit.Base.update(messagestyle["style"], this.attrs_.labelsDivStyles);
270 this.labelsDiv_ = MochiKit.DOM.DIV(messagestyle);
271 MochiKit.DOM.appendChildNodes(this.graphDiv, this.labelsDiv_);
272 }
273 };
274
275 /**
276 * Create the text box to adjust the averaging period
277 * @return {Object} The newly-created text box
278 * @private
279 */
280 DateGraph.prototype.createRollInterface_ = function() {
281 var padding = this.plotter_.options.padding;
282 if (typeof this.attrs_.showRoller == 'undefined') {
283 this.attrs_.showRoller = false;
284 }
285 var display = this.attrs_.showRoller ? "block" : "none";
286 var textAttr = { "type": "text",
287 "size": "2",
288 "value": this.rollPeriod_,
289 "style": { "position": "absolute",
290 "zIndex": 10,
291 "top": (this.height_ - 25 - padding.bottom) + "px",
292 "left": (padding.left+1) + "px",
293 "display": display }
294 };
295 var roller = MochiKit.DOM.INPUT(textAttr);
296 var pa = this.graphDiv;
297 MochiKit.DOM.appendChildNodes(pa, roller);
298 connect(roller, 'onchange', this,
299 function() { this.adjustRoll(roller.value); });
300 return roller;
301 }
302
303 /**
304 * Set up all the mouse handlers needed to capture dragging behavior for zoom
305 * events. Uses MochiKit.Signal to attach all the event handlers.
306 * @private
307 */
308 DateGraph.prototype.createDragInterface_ = function() {
309 var self = this;
310
311 // Tracks whether the mouse is down right now
312 var mouseDown = false;
313 var dragStartX = null;
314 var dragStartY = null;
315 var dragEndX = null;
316 var dragEndY = null;
317 var prevEndX = null;
318
319 // Utility function to convert page-wide coordinates to canvas coords
320 var px = 0;
321 var py = 0;
322 var getX = function(e) { return e.mouse().page.x - px };
323 var getY = function(e) { return e.mouse().page.y - py };
324
325 // Draw zoom rectangles when the mouse is down and the user moves around
326 connect(this.hidden_, 'onmousemove', function(event) {
327 if (mouseDown) {
328 dragEndX = getX(event);
329 dragEndY = getY(event);
330
331 self.drawZoomRect_(dragStartX, dragEndX, prevEndX);
332 prevEndX = dragEndX;
333 }
334 });
335
336 // Track the beginning of drag events
337 connect(this.hidden_, 'onmousedown', function(event) {
338 mouseDown = true;
339 px = PlotKit.Base.findPosX(self.canvas_);
340 py = PlotKit.Base.findPosY(self.canvas_);
341 dragStartX = getX(event);
342 dragStartY = getY(event);
343 });
344
345 // If the user releases the mouse button during a drag, but not over the
346 // canvas, then it doesn't count as a zooming action.
347 connect(document, 'onmouseup', this, function(event) {
348 if (mouseDown) {
349 mouseDown = false;
350 dragStartX = null;
351 dragStartY = null;
352 }
353 });
354
355 // Temporarily cancel the dragging event when the mouse leaves the graph
356 connect(this.hidden_, 'onmouseout', this, function(event) {
357 if (mouseDown) {
358 dragEndX = null;
359 dragEndY = null;
360 }
361 });
362
363 // If the mouse is released on the canvas during a drag event, then it's a
364 // zoom. Only do the zoom if it's over a large enough area (>= 10 pixels)
365 connect(this.hidden_, 'onmouseup', this, function(event) {
366 if (mouseDown) {
367 mouseDown = false;
368 dragEndX = getX(event);
369 dragEndY = getY(event);
370 var regionWidth = Math.abs(dragEndX - dragStartX);
371 var regionHeight = Math.abs(dragEndY - dragStartY);
372
373 if (regionWidth < 2 && regionHeight < 2 &&
374 self.clickCallback_ != null &&
375 self.lastx_ != undefined) {
376 self.clickCallback_(event, new Date(self.lastx_));
377 }
378
379 if (regionWidth >= 10) {
380 self.doZoom_(Math.min(dragStartX, dragEndX),
381 Math.max(dragStartX, dragEndX));
382 } else {
383 self.canvas_.getContext("2d").clearRect(0, 0,
384 self.canvas_.width,
385 self.canvas_.height);
386 }
387
388 dragStartX = null;
389 dragStartY = null;
390 }
391 });
392
393 // Double-clicking zooms back out
394 connect(this.hidden_, 'ondblclick', this, function(event) {
395 self.dateWindow_ = null;
396 self.drawGraph_(self.rawData_);
397 var minDate = self.rawData_[0][0];
398 var maxDate = self.rawData_[self.rawData_.length - 1][0];
399 if (self.zoomCallback_) {
400 self.zoomCallback_(minDate, maxDate);
401 }
402 });
403 };
404
405 /**
406 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
407 * up any previous zoom rectangles that were drawn. This could be optimized to
408 * avoid extra redrawing, but it's tricky to avoid interactions with the status
409 * dots.
410 * @param {Number} startX The X position where the drag started, in canvas
411 * coordinates.
412 * @param {Number} endX The current X position of the drag, in canvas coords.
413 * @param {Number} prevEndX The value of endX on the previous call to this
414 * function. Used to avoid excess redrawing
415 * @private
416 */
417 DateGraph.prototype.drawZoomRect_ = function(startX, endX, prevEndX) {
418 var ctx = this.canvas_.getContext("2d");
419
420 // Clean up from the previous rect if necessary
421 if (prevEndX) {
422 ctx.clearRect(Math.min(startX, prevEndX), 0,
423 Math.abs(startX - prevEndX), this.height_);
424 }
425
426 // Draw a light-grey rectangle to show the new viewing area
427 if (endX && startX) {
428 ctx.fillStyle = "rgba(128,128,128,0.33)";
429 ctx.fillRect(Math.min(startX, endX), 0,
430 Math.abs(endX - startX), this.height_);
431 }
432 };
433
434 /**
435 * Zoom to something containing [lowX, highX]. These are pixel coordinates
436 * in the canvas. The exact zoom window may be slightly larger if there are no
437 * data points near lowX or highX. This function redraws the graph.
438 * @param {Number} lowX The leftmost pixel value that should be visible.
439 * @param {Number} highX The rightmost pixel value that should be visible.
440 * @private
441 */
442 DateGraph.prototype.doZoom_ = function(lowX, highX) {
443 // Find the earliest and latest dates contained in this canvasx range.
444 var points = this.layout_.points;
445 var minDate = null;
446 var maxDate = null;
447 // Find the nearest [minDate, maxDate] that contains [lowX, highX]
448 for (var i = 0; i < points.length; i++) {
449 var cx = points[i].canvasx;
450 var x = points[i].xval;
451 if (cx < lowX && (minDate == null || x > minDate)) minDate = x;
452 if (cx > highX && (maxDate == null || x < maxDate)) maxDate = x;
453 }
454 // Use the extremes if either is missing
455 if (minDate == null) minDate = points[0].xval;
456 if (maxDate == null) maxDate = points[points.length-1].xval;
457
458 this.dateWindow_ = [minDate, maxDate];
459 this.drawGraph_(this.rawData_);
460 if (this.zoomCallback_) {
461 this.zoomCallback_(minDate, maxDate);
462 }
463 };
464
465 /**
466 * When the mouse moves in the canvas, display information about a nearby data
467 * point and draw dots over those points in the data series. This function
468 * takes care of cleanup of previously-drawn dots.
469 * @param {Object} event The mousemove event from the browser.
470 * @private
471 */
472 DateGraph.prototype.mouseMove_ = function(event) {
473 var canvasx = event.mouse().page.x - PlotKit.Base.findPosX(this.hidden_);
474 var points = this.layout_.points;
475
476 var lastx = -1;
477 var lasty = -1;
478
479 // Loop through all the points and find the date nearest to our current
480 // location.
481 var minDist = 1e+100;
482 var idx = -1;
483 for (var i = 0; i < points.length; i++) {
484 var dist = Math.abs(points[i].canvasx - canvasx);
485 if (dist > minDist) break;
486 minDist = dist;
487 idx = i;
488 }
489 if (idx >= 0) lastx = points[idx].xval;
490 // Check that you can really highlight the last day's data
491 if (canvasx > points[points.length-1].canvasx)
492 lastx = points[points.length-1].xval;
493
494 // Extract the points we've selected
495 var selPoints = [];
496 for (var i = 0; i < points.length; i++) {
497 if (points[i].xval == lastx) {
498 selPoints.push(points[i]);
499 }
500 }
501
502 // Clear the previously drawn vertical, if there is one
503 var circleSize = this.attrs_.highlightCircleSize;
504 var ctx = this.canvas_.getContext("2d");
505 if (this.previousVerticalX_ >= 0) {
506 var px = this.previousVerticalX_;
507 ctx.clearRect(px - circleSize - 1, 0, 2 * circleSize + 2, this.height_);
508 }
509
510 if (selPoints.length > 0) {
511 var canvasx = selPoints[0].canvasx;
512
513 // Set the status message to indicate the selected point(s)
514 var replace = this.xValueFormatter_(lastx) + ":";
515 var clen = this.colors_.length;
516 for (var i = 0; i < selPoints.length; i++) {
517 if (this.labelsSeparateLines) {
518 replace += "<br/>";
519 }
520 var point = selPoints[i];
521 replace += " <b><font color='" + this.colors_[i%clen].toHexString() + "'>"
522 + point.name + "</font></b>:"
523 + this.round_(point.yval, 2);
524 }
525 this.labelsDiv_.innerHTML = replace;
526
527 // Save last x position for callbacks.
528 this.lastx_ = lastx;
529
530 // Draw colored circles over the center of each selected point
531 ctx.save()
532 for (var i = 0; i < selPoints.length; i++) {
533 ctx.beginPath();
534 ctx.fillStyle = this.colors_[i%clen].toRGBString();
535 ctx.arc(canvasx, selPoints[i%clen].canvasy, circleSize, 0, 360, false);
536 ctx.fill();
537 }
538 ctx.restore();
539
540 this.previousVerticalX_ = canvasx;
541 }
542 };
543
544 /**
545 * The mouse has left the canvas. Clear out whatever artifacts remain
546 * @param {Object} event the mouseout event from the browser.
547 * @private
548 */
549 DateGraph.prototype.mouseOut_ = function(event) {
550 // Get rid of the overlay data
551 var ctx = this.canvas_.getContext("2d");
552 ctx.clearRect(0, 0, this.width_, this.height_);
553 this.labelsDiv_.innerHTML = "";
554 };
555
556 DateGraph.zeropad = function(x) {
557 if (x < 10) return "0" + x; else return "" + x;
558 }
559
560 /**
561 * Return a string version of the hours, minutes and seconds portion of a date.
562 * @param {Number} date The JavaScript date (ms since epoch)
563 * @return {String} A time of the form "HH:MM:SS"
564 * @private
565 */
566 DateGraph.prototype.hmsString_ = function(date) {
567 var zeropad = DateGraph.zeropad;
568 var d = new Date(date);
569 if (d.getSeconds()) {
570 return zeropad(d.getHours()) + ":" +
571 zeropad(d.getMinutes()) + ":" +
572 zeropad(d.getSeconds());
573 } else if (d.getMinutes()) {
574 return zeropad(d.getHours()) + ":" + zeropad(d.getMinutes());
575 } else {
576 return zeropad(d.getHours());
577 }
578 }
579
580 /**
581 * Convert a JS date (millis since epoch) to YYYY/MM/DD
582 * @param {Number} date The JavaScript date (ms since epoch)
583 * @return {String} A date of the form "YYYY/MM/DD"
584 * @private
585 */
586 DateGraph.prototype.dateString_ = function(date) {
587 var zeropad = DateGraph.zeropad;
588 var d = new Date(date);
589
590 // Get the year:
591 var year = "" + d.getFullYear();
592 // Get a 0 padded month string
593 var month = zeropad(d.getMonth() + 1); //months are 0-offset, sigh
594 // Get a 0 padded day string
595 var day = zeropad(d.getDate());
596
597 var ret = "";
598 var frac = d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
599 if (frac) ret = " " + this.hmsString_(date);
600
601 return year + "/" + month + "/" + day + ret;
602 };
603
604 /**
605 * Round a number to the specified number of digits past the decimal point.
606 * @param {Number} num The number to round
607 * @param {Number} places The number of decimals to which to round
608 * @return {Number} The rounded number
609 * @private
610 */
611 DateGraph.prototype.round_ = function(num, places) {
612 var shift = Math.pow(10, places);
613 return Math.round(num * shift)/shift;
614 };
615
616 /**
617 * Fires when there's data available to be graphed.
618 * @param {String} data Raw CSV data to be plotted
619 * @private
620 */
621 DateGraph.prototype.loadedEvent_ = function(data) {
622 this.rawData_ = this.parseCSV_(data);
623 this.drawGraph_(this.rawData_);
624 };
625
626 DateGraph.prototype.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
627 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
628 DateGraph.prototype.quarters = ["Jan", "Apr", "Jul", "Oct"];
629
630 /**
631 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
632 * @private
633 */
634 DateGraph.prototype.addXTicks_ = function() {
635 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
636 var startDate, endDate;
637 if (this.dateWindow_) {
638 startDate = this.dateWindow_[0];
639 endDate = this.dateWindow_[1];
640 } else {
641 startDate = this.rawData_[0][0];
642 endDate = this.rawData_[this.rawData_.length - 1][0];
643 }
644
645 var xTicks = this.xTicker_(startDate, endDate);
646 this.layout_.updateOptions({xTicks: xTicks});
647 };
648
649 // Time granularity enumeration
650 DateGraph.SECONDLY = 0;
651 DateGraph.MINUTELY = 1;
652 DateGraph.HOURLY = 2;
653 DateGraph.DAILY = 3;
654 DateGraph.WEEKLY = 4;
655 DateGraph.MONTHLY = 5;
656 DateGraph.QUARTERLY = 6;
657 DateGraph.BIANNUAL = 7;
658 DateGraph.ANNUAL = 8;
659 DateGraph.DECADAL = 9;
660 DateGraph.NUM_GRANULARITIES = 10;
661
662 DateGraph.SHORT_SPACINGS = [];
663 DateGraph.SHORT_SPACINGS[DateGraph.SECONDLY] = 1000 * 1;
664 DateGraph.SHORT_SPACINGS[DateGraph.MINUTELY] = 1000 * 60;
665 DateGraph.SHORT_SPACINGS[DateGraph.HOURLY] = 1000 * 3600;
666 DateGraph.SHORT_SPACINGS[DateGraph.DAILY] = 1000 * 86400;
667 DateGraph.SHORT_SPACINGS[DateGraph.WEEKLY] = 1000 * 604800;
668
669 // NumXTicks()
670 //
671 // If we used this time granularity, how many ticks would there be?
672 // This is only an approximation, but it's generally good enough.
673 //
674 DateGraph.prototype.NumXTicks = function(start_time, end_time, granularity) {
675 if (granularity < DateGraph.MONTHLY) {
676 // Generate one tick mark for every fixed interval of time.
677 var spacing = DateGraph.SHORT_SPACINGS[granularity];
678 return Math.floor(0.5 + 1.0 * (end_time - start_time) / spacing);
679 } else {
680 var year_mod = 1; // e.g. to only print one point every 10 years.
681 var num_months = 12;
682 if (granularity == DateGraph.QUARTERLY) num_months = 3;
683 if (granularity == DateGraph.BIANNUAL) num_months = 2;
684 if (granularity == DateGraph.ANNUAL) num_months = 1;
685 if (granularity == DateGraph.DECADAL) { num_months = 1; year_mod = 10; }
686
687 var msInYear = 365.2524 * 24 * 3600 * 1000;
688 var num_years = 1.0 * (end_time - start_time) / msInYear;
689 return Math.floor(0.5 + 1.0 * num_years * num_months / year_mod);
690 }
691 };
692
693 // GetXAxis()
694 //
695 // Construct an x-axis of nicely-formatted times on meaningful boundaries
696 // (e.g. 'Jan 09' rather than 'Jan 22, 2009').
697 //
698 // Returns an array containing {v: millis, label: label} dictionaries.
699 //
700 DateGraph.prototype.GetXAxis = function(start_time, end_time, granularity) {
701 var ticks = [];
702 if (granularity < DateGraph.MONTHLY) {
703 // Generate one tick mark for every fixed interval of time.
704 var spacing = DateGraph.SHORT_SPACINGS[granularity];
705 var format = '%d%b'; // e.g. "1 Jan"
706 for (var t = start_time; t <= end_time; t += spacing) {
707 var d = new Date(t);
708 var frac = d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
709 if (frac == 0 || granularity >= DateGraph.DAILY) {
710 // the extra hour covers DST problems.
711 ticks.push({ v:t, label: new Date(t + 3600*1000).strftime(format) });
712 } else {
713 ticks.push({ v:t, label: this.hmsString_(t) });
714 }
715 }
716 } else {
717 // Display a tick mark on the first of a set of months of each year.
718 // Years get a tick mark iff y % year_mod == 0. This is useful for
719 // displaying a tick mark once every 10 years, say, on long time scales.
720 var months;
721 var year_mod = 1; // e.g. to only print one point every 10 years.
722
723 // TODO(danvk): use CachingRoundTime where appropriate to get boundaries.
724 if (granularity == DateGraph.MONTHLY) {
725 months = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ];
726 } else if (granularity == DateGraph.QUARTERLY) {
727 months = [ 0, 3, 6, 9 ];
728 } else if (granularity == DateGraph.BIANNUAL) {
729 months = [ 0, 6 ];
730 } else if (granularity == DateGraph.ANNUAL) {
731 months = [ 0 ];
732 } else if (granularity == DateGraph.DECADAL) {
733 months = [ 0 ];
734 year_mod = 10;
735 }
736
737 var start_year = new Date(start_time).getFullYear();
738 var end_year = new Date(end_time).getFullYear();
739 var zeropad = DateGraph.zeropad;
740 for (var i = start_year; i <= end_year; i++) {
741 if (i % year_mod != 0) continue;
742 for (var j = 0; j < months.length; j++) {
743 var date_str = i + "/" + zeropad(1 + months[j]) + "/01";
744 var t = Date.parse(date_str);
745 if (t < start_time || t > end_time) continue;
746 ticks.push({ v:t, label: new Date(t).strftime('%b %y') });
747 }
748 }
749 }
750
751 return ticks;
752 };
753
754
755 /**
756 * Add ticks to the x-axis based on a date range.
757 * @param {Number} startDate Start of the date window (millis since epoch)
758 * @param {Number} endDate End of the date window (millis since epoch)
759 * @return {Array.<Object>} Array of {label, value} tuples.
760 * @public
761 */
762 DateGraph.prototype.dateTicker = function(startDate, endDate) {
763 var chosen = -1;
764 for (var i = 0; i < DateGraph.NUM_GRANULARITIES; i++) {
765 var num_ticks = this.NumXTicks(startDate, endDate, i);
766 if (this.width_ / num_ticks >= this.attrs_.pixelsPerXLabel) {
767 chosen = i;
768 break;
769 }
770 }
771
772 if (chosen >= 0) {
773 return this.GetXAxis(startDate, endDate, chosen);
774 } else {
775 // TODO(danvk): signal error.
776 }
777 };
778
779 /**
780 * Add ticks when the x axis has numbers on it (instead of dates)
781 * @param {Number} startDate Start of the date window (millis since epoch)
782 * @param {Number} endDate End of the date window (millis since epoch)
783 * @return {Array.<Object>} Array of {label, value} tuples.
784 * @public
785 */
786 DateGraph.prototype.numericTicks = function(minV, maxV) {
787 // Basic idea:
788 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
789 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks).
790 // The first spacing greater than this.attrs_.pixelsPerYLabel is what we use.
791 var mults = [1, 2, 5];
792 var scale, low_val, high_val, nTicks;
793 for (var i = -10; i < 50; i++) {
794 var base_scale = Math.pow(10, i);
795 for (var j = 0; j < mults.length; j++) {
796 scale = base_scale * mults[j];
797 console.log("i/j/scale: " + i + "/" + j + "/" + scale);
798 low_val = Math.floor(minV / scale) * scale;
799 high_val = Math.ceil(maxV / scale) * scale;
800 nTicks = (high_val - low_val) / scale;
801 var spacing = this.height_ / nTicks;
802 // wish I could break out of both loops at once...
803 if (spacing > this.attrs_.pixelsPerYLabel) break;
804 }
805 if (spacing > this.attrs_.pixelsPerYLabel) break;
806 }
807 console.log("scale: " + scale);
808 console.log("low_val: " + low_val);
809 console.log("high_val: " + high_val);
810
811 // Construct labels for the ticks
812 var ticks = [];
813 for (var i = 0; i < nTicks; i++) {
814 var tickV = low_val + i * scale;
815 var label = this.round_(tickV, 2);
816 if (this.labelsKMB_) {
817 var k = 1000;
818 if (tickV >= k*k*k) {
819 label = this.round_(tickV/(k*k*k), 1) + "B";
820 } else if (tickV >= k*k) {
821 label = this.round_(tickV/(k*k), 1) + "M";
822 } else if (tickV >= k) {
823 label = this.round_(tickV/k, 1) + "K";
824 }
825 }
826 ticks.push( {label: label, v: tickV} );
827 }
828 return ticks;
829 };
830
831 /**
832 * Adds appropriate ticks on the y-axis
833 * @param {Number} minY The minimum Y value in the data set
834 * @param {Number} maxY The maximum Y value in the data set
835 * @private
836 */
837 DateGraph.prototype.addYTicks_ = function(minY, maxY) {
838 // Set the number of ticks so that the labels are human-friendly.
839 var ticks = this.numericTicks(minY, maxY);
840 this.layout_.updateOptions( { yAxis: [minY, maxY],
841 yTicks: ticks } );
842 };
843
844 /**
845 * Update the graph with new data. Data is in the format
846 * [ [date1, val1, val2, ...], [date2, val1, val2, ...] if errorBars=false
847 * or, if errorBars=true,
848 * [ [date1, [val1,stddev1], [val2,stddev2], ...], [date2, ...], ...]
849 * @param {Array.<Object>} data The data (see above)
850 * @private
851 */
852 DateGraph.prototype.drawGraph_ = function(data) {
853 var maxY = null;
854 this.layout_.removeAllDatasets();
855 // Loop over all fields in the dataset
856 for (var i = 1; i < data[0].length; i++) {
857 var series = [];
858 for (var j = 0; j < data.length; j++) {
859 var date = data[j][0];
860 series[j] = [date, data[j][i]];
861 }
862 series = this.rollingAverage(series, this.rollPeriod_);
863
864 // Prune down to the desired range, if necessary (for zooming)
865 var bars = this.errorBars_ || this.customBars_;
866 if (this.dateWindow_) {
867 var low = this.dateWindow_[0];
868 var high= this.dateWindow_[1];
869 var pruned = [];
870 for (var k = 0; k < series.length; k++) {
871 if (series[k][0] >= low && series[k][0] <= high) {
872 pruned.push(series[k]);
873 var y = bars ? series[k][1][0] : series[k][1];
874 if (maxY == null || y > maxY) maxY = y;
875 }
876 }
877 series = pruned;
878 } else {
879 for (var j = 0; j < series.length; j++) {
880 var y = bars ? series[j][1][0] : series[j][1];
881 if (maxY == null || y > maxY) {
882 maxY = bars ? y + series[j][1][1] : y;
883 }
884 }
885 }
886
887 if (bars) {
888 var vals = [];
889 for (var j=0; j<series.length; j++)
890 vals[j] = [series[j][0],
891 series[j][1][0], series[j][1][1], series[j][1][2]];
892 this.layout_.addDataset(this.labels_[i - 1], vals);
893 } else {
894 this.layout_.addDataset(this.labels_[i - 1], series);
895 }
896 }
897
898 // Use some heuristics to come up with a good maxY value, unless it's been
899 // set explicitly by the user.
900 if (this.valueRange_ != null) {
901 this.addYTicks_(this.valueRange_[0], this.valueRange_[1]);
902 } else {
903 // Add some padding and round up to an integer to be human-friendly.
904 maxY *= 1.1;
905 if (maxY <= 0.0) maxY = 1.0;
906 this.addYTicks_(0, maxY);
907 }
908
909 this.addXTicks_();
910
911 // Tell PlotKit to use this new data and render itself
912 this.layout_.evaluateWithError();
913 this.plotter_.clear();
914 this.plotter_.render();
915 this.canvas_.getContext('2d').clearRect(0, 0,
916 this.canvas_.width, this.canvas_.height);
917 };
918
919 /**
920 * Calculates the rolling average of a data set.
921 * If originalData is [label, val], rolls the average of those.
922 * If originalData is [label, [, it's interpreted as [value, stddev]
923 * and the roll is returned in the same form, with appropriately reduced
924 * stddev for each value.
925 * Note that this is where fractional input (i.e. '5/10') is converted into
926 * decimal values.
927 * @param {Array} originalData The data in the appropriate format (see above)
928 * @param {Number} rollPeriod The number of days over which to average the data
929 */
930 DateGraph.prototype.rollingAverage = function(originalData, rollPeriod) {
931 if (originalData.length < 2)
932 return originalData;
933 var rollPeriod = Math.min(rollPeriod, originalData.length - 1);
934 var rollingData = [];
935 var sigma = this.sigma_;
936
937 if (this.fractions_) {
938 var num = 0;
939 var den = 0; // numerator/denominator
940 var mult = 100.0;
941 for (var i = 0; i < originalData.length; i++) {
942 num += originalData[i][1][0];
943 den += originalData[i][1][1];
944 if (i - rollPeriod >= 0) {
945 num -= originalData[i - rollPeriod][1][0];
946 den -= originalData[i - rollPeriod][1][1];
947 }
948
949 var date = originalData[i][0];
950 var value = den ? num / den : 0.0;
951 if (this.errorBars_) {
952 if (this.wilsonInterval_) {
953 // For more details on this confidence interval, see:
954 // http://en.wikipedia.org/wiki/Binomial_confidence_interval
955 if (den) {
956 var p = value < 0 ? 0 : value, n = den;
957 var pm = sigma * Math.sqrt(p*(1-p)/n + sigma*sigma/(4*n*n));
958 var denom = 1 + sigma * sigma / den;
959 var low = (p + sigma * sigma / (2 * den) - pm) / denom;
960 var high = (p + sigma * sigma / (2 * den) + pm) / denom;
961 rollingData[i] = [date,
962 [p * mult, (p - low) * mult, (high - p) * mult]];
963 } else {
964 rollingData[i] = [date, [0, 0, 0]];
965 }
966 } else {
967 var stddev = den ? sigma * Math.sqrt(value * (1 - value) / den) : 1.0;
968 rollingData[i] = [date, [mult * value, mult * stddev, mult * stddev]];
969 }
970 } else {
971 rollingData[i] = [date, mult * value];
972 }
973 }
974 } else if (this.customBars_) {
975 var low = 0;
976 var mid = 0;
977 var high = 0;
978 var count = 0;
979 for (var i = 0; i < originalData.length; i++) {
980 var data = originalData[i][1];
981 var y = data[1];
982 rollingData[i] = [originalData[i][0], [y, y - data[0], data[2] - y]];
983
984 low += data[0];
985 mid += y;
986 high += data[2];
987 count += 1;
988 if (i - rollPeriod >= 0) {
989 var prev = originalData[i - rollPeriod];
990 low -= prev[1][0];
991 mid -= prev[1][1];
992 high -= prev[1][2];
993 count -= 1;
994 }
995 rollingData[i] = [originalData[i][0], [ 1.0 * mid / count,
996 1.0 * (mid - low) / count,
997 1.0 * (high - mid) / count ]];
998 }
999 } else {
1000 // Calculate the rolling average for the first rollPeriod - 1 points where
1001 // there is not enough data to roll over the full number of days
1002 var num_init_points = Math.min(rollPeriod - 1, originalData.length - 2);
1003 if (!this.errorBars_){
1004 for (var i = 0; i < num_init_points; i++) {
1005 var sum = 0;
1006 for (var j = 0; j < i + 1; j++)
1007 sum += originalData[j][1];
1008 rollingData[i] = [originalData[i][0], sum / (i + 1)];
1009 }
1010 // Calculate the rolling average for the remaining points
1011 for (var i = Math.min(rollPeriod - 1, originalData.length - 2);
1012 i < originalData.length;
1013 i++) {
1014 var sum = 0;
1015 for (var j = i - rollPeriod + 1; j < i + 1; j++)
1016 sum += originalData[j][1];
1017 rollingData[i] = [originalData[i][0], sum / rollPeriod];
1018 }
1019 } else {
1020 for (var i = 0; i < num_init_points; i++) {
1021 var sum = 0;
1022 var variance = 0;
1023 for (var j = 0; j < i + 1; j++) {
1024 sum += originalData[j][1][0];
1025 variance += Math.pow(originalData[j][1][1], 2);
1026 }
1027 var stddev = Math.sqrt(variance)/(i+1);
1028 rollingData[i] = [originalData[i][0],
1029 [sum/(i+1), sigma * stddev, sigma * stddev]];
1030 }
1031 // Calculate the rolling average for the remaining points
1032 for (var i = Math.min(rollPeriod - 1, originalData.length - 2);
1033 i < originalData.length;
1034 i++) {
1035 var sum = 0;
1036 var variance = 0;
1037 for (var j = i - rollPeriod + 1; j < i + 1; j++) {
1038 sum += originalData[j][1][0];
1039 variance += Math.pow(originalData[j][1][1], 2);
1040 }
1041 var stddev = Math.sqrt(variance) / rollPeriod;
1042 rollingData[i] = [originalData[i][0],
1043 [sum / rollPeriod, sigma * stddev, sigma * stddev]];
1044 }
1045 }
1046 }
1047
1048 return rollingData;
1049 };
1050
1051 /**
1052 * Parses a date, returning the number of milliseconds since epoch. This can be
1053 * passed in as an xValueParser in the DateGraph constructor.
1054 * @param {String} A date in YYYYMMDD format.
1055 * @return {Number} Milliseconds since epoch.
1056 * @public
1057 */
1058 DateGraph.prototype.dateParser = function(dateStr) {
1059 var dateStrSlashed;
1060 if (dateStr.length == 10 && dateStr.search("-") != -1) { // e.g. '2009-07-12'
1061 dateStrSlashed = dateStr.replace("-", "/", "g");
1062 while (dateStrSlashed.search("-") != -1) {
1063 dateStrSlashed = dateStrSlashed.replace("-", "/");
1064 }
1065 return Date.parse(dateStrSlashed);
1066 } else if (dateStr.length == 8) { // e.g. '20090712'
1067 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2)
1068 + "/" + dateStr.substr(6,2);
1069 return Date.parse(dateStrSlashed);
1070 } else {
1071 // Any format that Date.parse will accept, e.g. "2009/07/12" or
1072 // "2009/07/12 12:34:56"
1073 return Date.parse(dateStr);
1074 }
1075 };
1076
1077 /**
1078 * Parses a string in a special csv format. We expect a csv file where each
1079 * line is a date point, and the first field in each line is the date string.
1080 * We also expect that all remaining fields represent series.
1081 * if this.errorBars_ is set, then interpret the fields as:
1082 * date, series1, stddev1, series2, stddev2, ...
1083 * @param {Array.<Object>} data See above.
1084 * @private
1085 */
1086 DateGraph.prototype.parseCSV_ = function(data) {
1087 var ret = [];
1088 var lines = data.split("\n");
1089 var start = this.labelsFromCSV_ ? 1 : 0;
1090 if (this.labelsFromCSV_) {
1091 var labels = lines[0].split(",");
1092 labels.shift(); // a "date" parameter is assumed.
1093 this.labels_ = labels;
1094 // regenerate automatic colors.
1095 this.setColors_(this.attrs_);
1096 this.renderOptions_.colorScheme = this.colors_;
1097 MochiKit.Base.update(this.plotter_.options, this.renderOptions_);
1098 MochiKit.Base.update(this.layoutOptions_, this.attrs_);
1099 }
1100
1101 for (var i = start; i < lines.length; i++) {
1102 var line = lines[i];
1103 if (line.length == 0) continue; // skip blank lines
1104 var inFields = line.split(',');
1105 if (inFields.length < 2)
1106 continue;
1107
1108 var fields = [];
1109 fields[0] = this.xValueParser_(inFields[0]);
1110
1111 // If fractions are expected, parse the numbers as "A/B"
1112 if (this.fractions_) {
1113 for (var j = 1; j < inFields.length; j++) {
1114 // TODO(danvk): figure out an appropriate way to flag parse errors.
1115 var vals = inFields[j].split("/");
1116 fields[j] = [parseFloat(vals[0]), parseFloat(vals[1])];
1117 }
1118 } else if (this.errorBars_) {
1119 // If there are error bars, values are (value, stddev) pairs
1120 for (var j = 1; j < inFields.length; j += 2)
1121 fields[(j + 1) / 2] = [parseFloat(inFields[j]),
1122 parseFloat(inFields[j + 1])];
1123 } else if (this.customBars_) {
1124 // Bars are a low;center;high tuple
1125 for (var j = 1; j < inFields.length; j++) {
1126 var vals = inFields[j].split(";");
1127 fields[j] = [ parseFloat(vals[0]),
1128 parseFloat(vals[1]),
1129 parseFloat(vals[2]) ];
1130 }
1131 } else {
1132 // Values are just numbers
1133 for (var j = 1; j < inFields.length; j++)
1134 fields[j] = parseFloat(inFields[j]);
1135 }
1136 ret.push(fields);
1137 }
1138 return ret;
1139 };
1140
1141 /**
1142 * Parses a DataTable object from gviz.
1143 * The data is expected to have a first column that is either a date or a
1144 * number. All subsequent columns must be numbers. If there is a clear mismatch
1145 * between this.xValueParser_ and the type of the first column, it will be
1146 * fixed. Returned value is in the same format as return value of parseCSV_.
1147 * @param {Array.<Object>} data See above.
1148 * @private
1149 */
1150 DateGraph.prototype.parseDataTable_ = function(data) {
1151 var cols = data.getNumberOfColumns();
1152 var rows = data.getNumberOfRows();
1153
1154 // Read column labels
1155 var labels = [];
1156 for (var i = 0; i < cols; i++) {
1157 labels.push(data.getColumnLabel(i));
1158 }
1159 labels.shift(); // the x-axis parameter is assumed and unnamed.
1160 this.labels_ = labels;
1161 // regenerate automatic colors.
1162 this.setColors_(this.attrs_);
1163 this.renderOptions_.colorScheme = this.colors_;
1164 MochiKit.Base.update(this.plotter_.options, this.renderOptions_);
1165 MochiKit.Base.update(this.layoutOptions_, this.attrs_);
1166
1167 var indepType = data.getColumnType(0);
1168 if (indepType != 'date' && indepType != 'number') {
1169 // TODO(danvk): standardize error reporting.
1170 alert("only 'date' and 'number' types are supported for column 1" +
1171 "of DataTable input (Got '" + indepType + "')");
1172 return null;
1173 }
1174
1175 var ret = [];
1176 for (var i = 0; i < rows; i++) {
1177 var row = [];
1178 if (indepType == 'date') {
1179 row.push(data.getValue(i, 0).getTime());
1180 } else {
1181 row.push(data.getValue(i, 0));
1182 }
1183 for (var j = 1; j < cols; j++) {
1184 row.push(data.getValue(i, j));
1185 }
1186 ret.push(row);
1187 }
1188 return ret;
1189 }
1190
1191 /**
1192 * Get the CSV data. If it's in a function, call that function. If it's in a
1193 * file, do an XMLHttpRequest to get it.
1194 * @private
1195 */
1196 DateGraph.prototype.start_ = function() {
1197 if (typeof this.file_ == 'function') {
1198 // Stubbed out to allow this to run off a filesystem
1199 this.loadedEvent_(this.file_());
1200 } else if (typeof this.file_ == 'object' &&
1201 typeof this.file_.getColumnRange == 'function') {
1202 // must be a DataTable from gviz.
1203 this.rawData_ = this.parseDataTable_(this.file_);
1204 this.drawGraph_(this.rawData_);
1205 } else {
1206 var req = new XMLHttpRequest();
1207 var caller = this;
1208 req.onreadystatechange = function () {
1209 if (req.readyState == 4) {
1210 if (req.status == 200) {
1211 caller.loadedEvent_(req.responseText);
1212 }
1213 }
1214 };
1215
1216 req.open("GET", this.file_, true);
1217 req.send(null);
1218 }
1219 };
1220
1221 /**
1222 * Changes various properties of the graph. These can include:
1223 * <ul>
1224 * <li>file: changes the source data for the graph</li>
1225 * <li>errorBars: changes whether the data contains stddev</li>
1226 * </ul>
1227 * @param {Object} attrs The new properties and values
1228 */
1229 DateGraph.prototype.updateOptions = function(attrs) {
1230 if (attrs.errorBars) {
1231 this.errorBars_ = attrs.errorBars;
1232 }
1233 if (attrs.customBars) {
1234 this.customBars_ = attrs.customBars;
1235 }
1236 if (attrs.strokeWidth) {
1237 this.strokeWidth_ = attrs.strokeWidth;
1238 }
1239 if (attrs.rollPeriod) {
1240 this.rollPeriod_ = attrs.rollPeriod;
1241 }
1242 if (attrs.dateWindow) {
1243 this.dateWindow_ = attrs.dateWindow;
1244 }
1245 if (attrs.valueRange) {
1246 this.valueRange_ = attrs.valueRange;
1247 }
1248 MochiKit.Base.update(this.attrs_, attrs);
1249 if (typeof(attrs.labels) != 'undefined') {
1250 this.labels_ = attrs.labels;
1251 this.labelsFromCSV_ = (attrs.labels == null);
1252 }
1253 this.layout_.updateOptions({ 'errorBars': this.errorBars_ });
1254 if (attrs['file'] && attrs['file'] != this.file_) {
1255 this.file_ = attrs['file'];
1256 this.start_();
1257 } else {
1258 this.drawGraph_(this.rawData_);
1259 }
1260 };
1261
1262 /**
1263 * Adjusts the number of days in the rolling average. Updates the graph to
1264 * reflect the new averaging period.
1265 * @param {Number} length Number of days over which to average the data.
1266 */
1267 DateGraph.prototype.adjustRoll = function(length) {
1268 this.rollPeriod_ = length;
1269 this.drawGraph_(this.rawData_);
1270 };
1271
1272
1273 /**
1274 * A wrapper around DateGraph that implements the gviz API.
1275 * @param {Object} container The DOM object the visualization should live in.
1276 */
1277 DateGraph.GVizChart = function(container) {
1278 this.container = container;
1279 }
1280
1281 DateGraph.GVizChart.prototype.draw = function(data, options) {
1282 this.container.innerHTML = '';
1283 this.date_graph = new DateGraph(this.container, data, null, options || {});
1284 }