3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
8 * @fileoverview This file contains utility functions used by dygraphs. These
9 * are typically static (i.e. not related to any particular dygraph). Examples
10 * include date/time formatting functions, basic algorithms (e.g. binary
11 * search) and generic DOM-manipulation functions.
16 /*global Dygraph:false, Node:false */
19 Dygraph
.LOG_SCALE
= 10;
20 Dygraph
.LN_TEN
= Math
.log(Dygraph
.LOG_SCALE
);
27 Dygraph
.log10
= function(x
) {
28 return Math
.log(x
) / Dygraph
.LN_TEN
;
31 /** A dotted line stroke pattern. */
32 Dygraph
.DOTTED_LINE
= [2, 2];
33 /** A dashed line stroke pattern. */
34 Dygraph
.DASHED_LINE
= [7, 3];
35 /** A dot dash stroke pattern. */
36 Dygraph
.DOT_DASH_LINE
= [7, 2, 2, 2];
39 * Return the 2d context for a dygraph canvas.
41 * This method is only exposed for the sake of replacing the function in
42 * automated tests, e.g.
44 * var oldFunc = Dygraph.getContext();
45 * Dygraph.getContext = function(canvas) {
46 * var realContext = oldFunc(canvas);
47 * return new Proxy(realContext);
49 * @param {!HTMLCanvasElement} canvas
50 * @return {!CanvasRenderingContext2D}
53 Dygraph
.getContext
= function(canvas
) {
54 return /** @type{!CanvasRenderingContext2D}*/(canvas
.getContext("2d"));
58 * Add an event handler.
59 * @param {!Node} elem The element to add the event to.
60 * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
61 * @param {function(Event):(boolean|undefined)} fn The function to call
62 * on the event. The function takes one parameter: the event object.
65 Dygraph
.addEvent
= function addEvent(elem
, type
, fn
) {
66 elem
.addEventListener(type
, fn
, false);
70 * Add an event handler. This event handler is kept until the graph is
71 * destroyed with a call to graph.destroy().
73 * @param {!Node} elem The element to add the event to.
74 * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
75 * @param {function(Event):(boolean|undefined)} fn The function to call
76 * on the event. The function takes one parameter: the event object.
79 Dygraph
.prototype.addAndTrackEvent
= function(elem
, type
, fn
) {
80 Dygraph
.addEvent(elem
, type
, fn
);
81 this.registeredEvents_
.push({ elem
: elem
, type
: type
, fn
: fn
});
85 * Remove an event handler.
86 * @param {!Node} elem The element to remove the event from.
87 * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
88 * @param {function(Event):(boolean|undefined)} fn The function to call
89 * on the event. The function takes one parameter: the event object.
92 Dygraph
.removeEvent
= function(elem
, type
, fn
) {
93 elem
.removeEventListener(type
, fn
, false);
96 Dygraph
.prototype.removeTrackedEvents_
= function() {
97 if (this.registeredEvents_
) {
98 for (var idx
= 0; idx
< this.registeredEvents_
.length
; idx
++) {
99 var reg
= this.registeredEvents_
[idx
];
100 Dygraph
.removeEvent(reg
.elem
, reg
.type
, reg
.fn
);
104 this.registeredEvents_
= [];
108 * Cancels further processing of an event. This is useful to prevent default
109 * browser actions, e.g. highlighting text on a double-click.
110 * Based on the article at
111 * http://www.switchonthecode.com/tutorials/javascript-tutorial-the-scroll-wheel
112 * @param {!Event} e The event whose normal behavior should be canceled.
115 Dygraph
.cancelEvent
= function(e
) {
116 e
= e
? e
: window
.event
;
117 if (e
.stopPropagation
) {
120 if (e
.preventDefault
) {
123 e
.cancelBubble
= true;
125 e
.returnValue
= false;
130 * Convert hsv values to an rgb(r,g,b) string. Taken from MochiKit.Color. This
131 * is used to generate default series colors which are evenly spaced on the
133 * @param { number } hue Range is 0.0-1.0.
134 * @param { number } saturation Range is 0.0-1.0.
135 * @param { number } value Range is 0.0-1.0.
136 * @return { string } "rgb(r,g,b)" where r, g and b range from 0-255.
139 Dygraph
.hsvToRGB
= function (hue
, saturation
, value
) {
143 if (saturation
=== 0) {
148 var i
= Math
.floor(hue
* 6);
149 var f
= (hue
* 6) - i
;
150 var p
= value
* (1 - saturation
);
151 var q
= value
* (1 - (saturation
* f
));
152 var t
= value
* (1 - (saturation
* (1 - f
)));
154 case 1: red
= q
; green
= value
; blue
= p
; break;
155 case 2: red
= p
; green
= value
; blue
= t
; break;
156 case 3: red
= p
; green
= q
; blue
= value
; break;
157 case 4: red
= t
; green
= p
; blue
= value
; break;
158 case 5: red
= value
; green
= p
; blue
= q
; break;
159 case 6: // fall through
160 case 0: red
= value
; green
= t
; blue
= p
; break;
163 red
= Math
.floor(255 * red
+ 0.5);
164 green
= Math
.floor(255 * green
+ 0.5);
165 blue
= Math
.floor(255 * blue
+ 0.5);
166 return 'rgb(' + red
+ ',' + green
+ ',' + blue
+ ')';
170 * Find the coordinates of an object relative to the top left of the page.
173 * @return {{x:number,y:number}}
176 Dygraph
.findPos
= function(obj
) {
177 var p
= obj
.getBoundingClientRect(),
179 d
= document
.documentElement
;
182 x
: p
.left
+ (w
.pageXOffset
|| d
.scrollLeft
),
183 y
: p
.top
+ (w
.pageYOffset
|| d
.scrollTop
)
188 * Returns the x-coordinate of the event in a coordinate system where the
189 * top-left corner of the page (not the window) is (0,0).
190 * Taken from MochiKit.Signal
195 Dygraph
.pageX
= function(e
) {
196 return (!e
.pageX
|| e
.pageX
< 0) ? 0 : e
.pageX
;
200 * Returns the y-coordinate of the event in a coordinate system where the
201 * top-left corner of the page (not the window) is (0,0).
202 * Taken from MochiKit.Signal
207 Dygraph
.pageY
= function(e
) {
208 return (!e
.pageY
|| e
.pageY
< 0) ? 0 : e
.pageY
;
212 * Converts page the x-coordinate of the event to pixel x-coordinates on the
213 * canvas (i.e. DOM Coords).
214 * @param {!Event} e Drag event.
215 * @param {!DygraphInteractionContext} context Interaction context object.
216 * @return {number} The amount by which the drag has moved to the right.
218 Dygraph
.dragGetX_
= function(e
, context
) {
219 return Dygraph
.pageX(e
) - context
.px
;
223 * Converts page the y-coordinate of the event to pixel y-coordinates on the
224 * canvas (i.e. DOM Coords).
225 * @param {!Event} e Drag event.
226 * @param {!DygraphInteractionContext} context Interaction context object.
227 * @return {number} The amount by which the drag has moved down.
229 Dygraph
.dragGetY_
= function(e
, context
) {
230 return Dygraph
.pageY(e
) - context
.py
;
234 * This returns true unless the parameter is 0, null, undefined or NaN.
235 * TODO(danvk): rename this function to something like 'isNonZeroNan'.
237 * @param {number} x The number to consider.
238 * @return {boolean} Whether the number is zero or NaN.
241 Dygraph
.isOK
= function(x
) {
242 return !!x
&& !isNaN(x
);
246 * @param {{x:?number,y:?number,yval:?number}} p The point to consider, valid
247 * points are {x, y} objects
248 * @param {boolean=} opt_allowNaNY Treat point with y=NaN as valid
249 * @return {boolean} Whether the point has numeric x and y.
252 Dygraph
.isValidPoint
= function(p
, opt_allowNaNY
) {
253 if (!p
) return false; // null or undefined object
254 if (p
.yval
=== null) return false; // missing point
255 if (p
.x
=== null || p
.x
=== undefined
) return false;
256 if (p
.y
=== null || p
.y
=== undefined
) return false;
257 if (isNaN(p
.x
) || (!opt_allowNaNY
&& isNaN(p
.y
))) return false;
262 * Number formatting function which mimicks the behavior of %g in printf, i.e.
263 * either exponential or fixed format (without trailing 0s) is used depending on
264 * the length of the generated string. The advantage of this format is that
265 * there is a predictable upper bound on the resulting string length,
266 * significant figures are not dropped, and normal numbers are not displayed in
267 * exponential notation.
269 * NOTE: JavaScript's native toPrecision() is NOT a drop-in replacement for %g.
270 * It creates strings which are too long for absolute values between 10^-4 and
271 * 10^-6, e.g. '0.00001' instead of '1e-5'. See tests/number-format.html for
274 * @param {number} x The number to format
275 * @param {number=} opt_precision The precision to use, default 2.
276 * @return {string} A string formatted like %g in printf. The max generated
277 * string length should be precision + 6 (e.g 1.123e+300).
279 Dygraph
.floatFormat
= function(x
, opt_precision
) {
280 // Avoid invalid precision values; [1, 21] is the valid range.
281 var p
= Math
.min(Math
.max(1, opt_precision
|| 2), 21);
283 // This is deceptively simple. The actual algorithm comes from:
285 // Max allowed length = p + 4
286 // where 4 comes from 'e+n' and '.'.
288 // Length of fixed format = 2 + y + p
289 // where 2 comes from '0.' and y = # of leading zeroes.
291 // Equating the two and solving for y yields y = 2, or 0.00xxxx which is
294 // Since the behavior of toPrecision() is identical for larger numbers, we
295 // don't have to worry about the other bound.
297 // Finally, the argument for toExponential() is the number of trailing digits,
298 // so we take off 1 for the value before the '.'.
299 return (Math
.abs(x
) < 1.0e-3 && x
!== 0.0) ?
300 x
.toExponential(p
- 1) : x
.toPrecision(p
);
304 * Converts '9' to '09' (useful for dates)
309 Dygraph
.zeropad
= function(x
) {
310 if (x
< 10) return "0" + x
; else return "" + x
;
314 * Date accessors to get the parts of a calendar date (year, month,
315 * day, hour, minute, second and millisecond) according to local time,
316 * and factory method to call the Date constructor with an array of arguments.
318 Dygraph
.DateAccessorsLocal
= {
319 getFullYear
: function(d
) {return d
.getFullYear();},
320 getMonth
: function(d
) {return d
.getMonth();},
321 getDate
: function(d
) {return d
.getDate();},
322 getHours
: function(d
) {return d
.getHours();},
323 getMinutes
: function(d
) {return d
.getMinutes();},
324 getSeconds
: function(d
) {return d
.getSeconds();},
325 getMilliseconds
: function(d
) {return d
.getMilliseconds();},
326 getDay
: function(d
) {return d
.getDay();},
327 makeDate
: function(y
, m
, d
, hh
, mm
, ss
, ms
) {
328 return new Date(y
, m
, d
, hh
, mm
, ss
, ms
);
333 * Date accessors to get the parts of a calendar date (year, month,
334 * day of month, hour, minute, second and millisecond) according to UTC time,
335 * and factory method to call the Date constructor with an array of arguments.
337 Dygraph
.DateAccessorsUTC
= {
338 getFullYear
: function(d
) {return d
.getUTCFullYear();},
339 getMonth
: function(d
) {return d
.getUTCMonth();},
340 getDate
: function(d
) {return d
.getUTCDate();},
341 getHours
: function(d
) {return d
.getUTCHours();},
342 getMinutes
: function(d
) {return d
.getUTCMinutes();},
343 getSeconds
: function(d
) {return d
.getUTCSeconds();},
344 getMilliseconds
: function(d
) {return d
.getUTCMilliseconds();},
345 getDay
: function(d
) {return d
.getUTCDay();},
346 makeDate
: function(y
, m
, d
, hh
, mm
, ss
, ms
) {
347 return new Date(Date
.UTC(y
, m
, d
, hh
, mm
, ss
, ms
));
352 * Return a string version of the hours, minutes and seconds portion of a date.
353 * @param {number} hh The hours (from 0-23)
354 * @param {number} mm The minutes (from 0-59)
355 * @param {number} ss The seconds (from 0-59)
356 * @return {string} A time of the form "HH:MM" or "HH:MM:SS"
359 Dygraph
.hmsString_
= function(hh
, mm
, ss
) {
360 var zeropad
= Dygraph
.zeropad
;
361 var ret
= zeropad(hh
) + ":" + zeropad(mm
);
363 ret
+= ":" + zeropad(ss
);
369 * Convert a JS date (millis since epoch) to a formatted string.
370 * @param {number} time The JavaScript time value (ms since epoch)
371 * @param {boolean} utc Wether output UTC or local time
372 * @return {string} A date of one of these forms:
373 * "YYYY/MM/DD", "YYYY/MM/DD HH:MM" or "YYYY/MM/DD HH:MM:SS"
376 Dygraph
.dateString_
= function(time
, utc
) {
377 var zeropad
= Dygraph
.zeropad
;
378 var accessors
= utc
? Dygraph
.DateAccessorsUTC
: Dygraph
.DateAccessorsLocal
;
379 var date
= new Date(time
);
380 var y
= accessors
.getFullYear(date
);
381 var m
= accessors
.getMonth(date
);
382 var d
= accessors
.getDate(date
);
383 var hh
= accessors
.getHours(date
);
384 var mm
= accessors
.getMinutes(date
);
385 var ss
= accessors
.getSeconds(date
);
386 // Get a year string:
388 // Get a 0 padded month string
389 var month
= zeropad(m
+ 1); //months are 0-offset, sigh
390 // Get a 0 padded day string
391 var day
= zeropad(d
);
392 var frac
= hh
* 3600 + mm
* 60 + ss
;
393 var ret
= year
+ "/" + month + "/" + day
;
395 ret
+= " " + Dygraph
.hmsString_(hh
, mm
, ss
);
401 * Round a number to the specified number of digits past the decimal point.
402 * @param {number} num The number to round
403 * @param {number} places The number of decimals to which to round
404 * @return {number} The rounded number
407 Dygraph
.round_
= function(num
, places
) {
408 var shift
= Math
.pow(10, places
);
409 return Math
.round(num
* shift
)/shift
;
413 * Implementation of binary search over an array.
414 * Currently does not work when val is outside the range of arry's values.
415 * @param {number} val the value to search for
416 * @param {Array.<number>} arry is the value over which to search
417 * @param {number} abs If abs > 0, find the lowest entry greater than val
418 * If abs < 0, find the highest entry less than val.
419 * If abs == 0, find the entry that equals val.
420 * @param {number=} low The first index in arry to consider (optional)
421 * @param {number=} high The last index in arry to consider (optional)
422 * @return {number} Index of the element, or -1 if it isn't found.
425 Dygraph
.binarySearch
= function(val
, arry
, abs
, low
, high
) {
426 if (low
=== null || low
=== undefined
||
427 high
=== null || high
=== undefined
) {
429 high
= arry
.length
- 1;
434 if (abs
=== null || abs
=== undefined
) {
437 var validIndex
= function(idx
) {
438 return idx
>= 0 && idx
< arry
.length
;
440 var mid
= parseInt((low
+ high
) / 2, 10);
441 var element
= arry
[mid
];
443 if (element
== val
) {
445 } else if (element
> val
) {
447 // Accept if element > val, but also if prior element < val.
449 if (validIndex(idx
) && arry
[idx
] < val
) {
453 return Dygraph
.binarySearch(val
, arry
, abs
, low
, mid
- 1);
454 } else if (element
< val
) {
456 // Accept if element < val, but also if prior element > val.
458 if (validIndex(idx
) && arry
[idx
] > val
) {
462 return Dygraph
.binarySearch(val
, arry
, abs
, mid
+ 1, high
);
464 return -1; // can't actually happen, but makes closure compiler happy
468 * Parses a date, returning the number of milliseconds since epoch. This can be
469 * passed in as an xValueParser in the Dygraph constructor.
470 * TODO(danvk): enumerate formats that this understands.
472 * @param {string} dateStr A date in a variety of possible string formats.
473 * @return {number} Milliseconds since epoch.
476 Dygraph
.dateParser
= function(dateStr
) {
480 // Let the system try the format first, with one caveat:
481 // YYYY-MM-DD[ HH:MM:SS] is interpreted as UTC by a variety of browsers.
482 // dygraphs displays dates in local time, so this will result in surprising
483 // inconsistencies. But if you specify "T" or "Z" (i.e. YYYY-MM-DDTHH:MM:SS),
484 // then you probably know what you're doing, so we'll let you go ahead.
485 // Issue: http://code.google.com/p/dygraphs/issues/detail
?id
=255
486 if (dateStr
.search("-") == -1 ||
487 dateStr
.search("T") != -1 || dateStr
.search("Z") != -1) {
488 d
= Dygraph
.dateStrToMillis(dateStr
);
489 if (d
&& !isNaN(d
)) return d
;
492 if (dateStr
.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
493 dateStrSlashed
= dateStr
.replace("-", "/", "g");
494 while (dateStrSlashed
.search("-") != -1) {
495 dateStrSlashed
= dateStrSlashed
.replace("-", "/");
497 d
= Dygraph
.dateStrToMillis(dateStrSlashed
);
498 } else if (dateStr
.length
== 8) { // e.g. '20090712'
499 // TODO(danvk): remove support for this format. It's confusing.
500 dateStrSlashed
= dateStr
.substr(0,4) + "/" + dateStr.substr(4,2) + "/" +
502 d
= Dygraph
.dateStrToMillis(dateStrSlashed
);
504 // Any format that Date.parse will accept, e.g. "2009/07/12" or
505 // "2009/07/12 12:34:56"
506 d
= Dygraph
.dateStrToMillis(dateStr
);
509 if (!d
|| isNaN(d
)) {
510 console
.error("Couldn't parse " + dateStr
+ " as a date");
516 * This is identical to JavaScript's built-in Date.parse() method, except that
517 * it doesn't get replaced with an incompatible method by aggressive JS
518 * libraries like MooTools or Joomla.
519 * @param {string} str The date string, e.g. "2011/05/06"
520 * @return {number} millis since epoch
523 Dygraph
.dateStrToMillis
= function(str
) {
524 return new Date(str
).getTime();
527 // These functions are all based on MochiKit.
529 * Copies all the properties from o to self.
531 * @param {!Object} self
535 Dygraph
.update
= function(self
, o
) {
536 if (typeof(o
) != 'undefined' && o
!== null) {
538 if (o
.hasOwnProperty(k
)) {
547 * Copies all the properties from o to self.
549 * @param {!Object} self
554 Dygraph
.updateDeep
= function (self
, o
) {
555 // Taken from http://stackoverflow.com/questions
/384286/javascript
-isdom
-how
-do-you
-check
-if-a
-javascript
-object
-is
-a
-dom
-object
558 typeof Node
=== "object" ? o
instanceof Node
:
559 typeof o
=== "object" && typeof o
.nodeType
=== "number" && typeof o
.nodeName
==="string"
563 if (typeof(o
) != 'undefined' && o
!== null) {
565 if (o
.hasOwnProperty(k
)) {
568 } else if (Dygraph
.isArrayLike(o
[k
])) {
569 self
[k
] = o
[k
].slice();
570 } else if (isNode(o
[k
])) {
571 // DOM objects are shallowly-copied.
573 } else if (typeof(o
[k
]) == 'object') {
574 if (typeof(self
[k
]) != 'object' || self
[k
] === null) {
577 Dygraph
.updateDeep(self
[k
], o
[k
]);
592 Dygraph
.isArrayLike
= function(o
) {
595 (typ
!= 'object' && !(typ
== 'function' &&
596 typeof(o
.item
) == 'function')) ||
598 typeof(o
.length
) != 'number' ||
611 Dygraph
.isDateLike
= function (o
) {
612 if (typeof(o
) != "object" || o
=== null ||
613 typeof(o
.getTime
) != 'function') {
620 * Note: this only seems to work for arrays.
625 Dygraph
.clone
= function(o
) {
626 // TODO(danvk): figure out how MochiKit's version works
628 for (var i
= 0; i
< o
.length
; i
++) {
629 if (Dygraph
.isArrayLike(o
[i
])) {
630 r
.push(Dygraph
.clone(o
[i
]));
639 * Create a new canvas element.
641 * @return {!HTMLCanvasElement}
644 Dygraph
.createCanvas
= function() {
645 return document
.createElement('canvas');
649 * Returns the context's pixel ratio, which is the ratio between the device
650 * pixel ratio and the backing store ratio. Typically this is 1 for conventional
651 * displays, and > 1 for HiDPI displays (such as the Retina MBP).
652 * See http://www.html5rocks.com/en/tutorials/canvas/hidpi/ for more details.
654 * @param {!CanvasRenderingContext2D} context The canvas's 2d context.
655 * @return {number} The ratio of the device pixel ratio and the backing store
656 * ratio for the specified context.
658 Dygraph
.getContextPixelRatio
= function(context
) {
660 var devicePixelRatio
= window
.devicePixelRatio
;
661 var backingStoreRatio
= context
.webkitBackingStorePixelRatio
||
662 context
.mozBackingStorePixelRatio
||
663 context
.msBackingStorePixelRatio
||
664 context
.oBackingStorePixelRatio
||
665 context
.backingStorePixelRatio
|| 1;
666 if (devicePixelRatio
!== undefined
) {
667 return devicePixelRatio
/ backingStoreRatio
;
669 // At least devicePixelRatio must be defined for this ratio to make sense.
670 // We default backingStoreRatio to 1: this does not exist on some browsers
671 // (i.e. desktop Chrome).
680 * Checks whether the user is on an Android browser.
681 * Android does not fully support the <canvas> tag, e.g. w/r/t/ clipping.
685 Dygraph
.isAndroid
= function() {
686 return (/Android/).test(navigator
.userAgent
);
691 * TODO(danvk): use @template here when it's better supported for classes.
692 * @param {!Array} array
693 * @param {number} start
694 * @param {number} length
695 * @param {function(!Array,?):boolean=} predicate
698 Dygraph
.Iterator
= function(array
, start
, length
, predicate
) {
700 length
= length
|| array
.length
;
701 this.hasNext
= true; // Use to identify if there's another element.
702 this.peek
= null; // Use for look-ahead
705 this.predicate_
= predicate
;
706 this.end_
= Math
.min(array
.length
, start
+ length
);
707 this.nextIdx_
= start
- 1; // use -1 so initial advance works.
708 this.next(); // ignoring result.
714 Dygraph
.Iterator
.prototype.next
= function() {
720 var nextIdx
= this.nextIdx_
+ 1;
722 while (nextIdx
< this.end_
) {
723 if (!this.predicate_
|| this.predicate_(this.array_
, nextIdx
)) {
724 this.peek
= this.array_
[nextIdx
];
730 this.nextIdx_
= nextIdx
;
732 this.hasNext
= false;
739 * Returns a new iterator over array, between indexes start and
740 * start + length, and only returns entries that pass the accept function
742 * @param {!Array} array the array to iterate over.
743 * @param {number} start the first index to iterate over, 0 if absent.
744 * @param {number} length the number of elements in the array to iterate over.
745 * This, along with start, defines a slice of the array, and so length
746 * doesn't imply the number of elements in the iterator when accept doesn't
747 * always accept all values. array.length when absent.
748 * @param {function(?):boolean=} opt_predicate a function that takes
749 * parameters array and idx, which returns true when the element should be
750 * returned. If omitted, all elements are accepted.
753 Dygraph
.createIterator
= function(array
, start
, length
, opt_predicate
) {
754 return new Dygraph
.Iterator(array
, start
, length
, opt_predicate
);
757 // Shim layer with setTimeout fallback.
758 // From: http://paulirish.com/2011/requestanimationframe-for-smart-animating/
759 // Should be called with the window context:
760 // Dygraph.requestAnimFrame.call(window, function() {})
761 Dygraph
.requestAnimFrame
= (function() {
762 return window
.requestAnimationFrame
||
763 window
.webkitRequestAnimationFrame
||
764 window
.mozRequestAnimationFrame
||
765 window
.oRequestAnimationFrame
||
766 window
.msRequestAnimationFrame
||
767 function (callback
) {
768 window
.setTimeout(callback
, 1000 / 60);
773 * Call a function at most maxFrames times at an attempted interval of
774 * framePeriodInMillis, then call a cleanup function once. repeatFn is called
775 * once immediately, then at most (maxFrames - 1) times asynchronously. If
776 * maxFrames==1, then cleanup_fn() is also called synchronously. This function
777 * is used to sequence animation.
778 * @param {function(number)} repeatFn Called repeatedly -- takes the frame
779 * number (from 0 to maxFrames-1) as an argument.
780 * @param {number} maxFrames The max number of times to call repeatFn
781 * @param {number} framePeriodInMillis Max requested time between frames.
782 * @param {function()} cleanupFn A function to call after all repeatFn calls.
785 Dygraph
.repeatAndCleanup
= function(repeatFn
, maxFrames
, framePeriodInMillis
,
788 var previousFrameNumber
;
789 var startTime
= new Date().getTime();
790 repeatFn(frameNumber
);
791 if (maxFrames
== 1) {
795 var maxFrameArg
= maxFrames
- 1;
798 if (frameNumber
>= maxFrames
) return;
799 Dygraph
.requestAnimFrame
.call(window
, function() {
800 // Determine which frame to draw based on the delay so far. Will skip
801 // frames if necessary.
802 var currentTime
= new Date().getTime();
803 var delayInMillis
= currentTime
- startTime
;
804 previousFrameNumber
= frameNumber
;
805 frameNumber
= Math
.floor(delayInMillis
/ framePeriodInMillis
);
806 var frameDelta
= frameNumber
- previousFrameNumber
;
807 // If we predict that the subsequent repeatFn call will overshoot our
808 // total frame target, so our last call will cause a stutter, then jump to
809 // the last call immediately. If we're going to cause a stutter, better
810 // to do it faster than slower.
811 var predictOvershootStutter
= (frameNumber
+ frameDelta
) > maxFrameArg
;
812 if (predictOvershootStutter
|| (frameNumber
>= maxFrameArg
)) {
813 repeatFn(maxFrameArg
); // Ensure final call with maxFrameArg.
816 if (frameDelta
!== 0) { // Don't call repeatFn with duplicate frames.
817 repeatFn(frameNumber
);
825 // A whitelist of options that do not change pixel positions.
826 var pixelSafeOptions
= {
827 'annotationClickHandler': true,
828 'annotationDblClickHandler': true,
829 'annotationMouseOutHandler': true,
830 'annotationMouseOverHandler': true,
831 'axisLabelColor': true,
832 'axisLineColor': true,
833 'axisLineWidth': true,
834 'clickCallback': true,
835 'drawCallback': true,
836 'drawHighlightPointCallback': true,
838 'drawPointCallback': true,
841 'gridLineColor': true,
842 'gridLineWidth': true,
843 'hideOverlayOnMouseOut': true,
844 'highlightCallback': true,
845 'highlightCircleSize': true,
846 'interactionModel': true,
847 'isZoomedIgnoreProgrammaticZoom': true,
849 'labelsDivStyles': true,
850 'labelsDivWidth': true,
853 'labelsSeparateLines': true,
854 'labelsShowZeroValues': true,
856 'panEdgeFraction': true,
857 'pixelsPerYLabel': true,
858 'pointClickCallback': true,
860 'rangeSelectorPlotFillColor': true,
861 'rangeSelectorPlotFillGradientColor': true,
862 'rangeSelectorPlotStrokeColor': true,
863 'rangeSelectorBackgroundStrokeColor': true,
864 'rangeSelectorBackgroundLineWidth': true,
865 'rangeSelectorPlotLineWidth': true,
866 'rangeSelectorForegroundStrokeColor': true,
867 'rangeSelectorForegroundLineWidth': true,
868 'rangeSelectorAlpha': true,
869 'showLabelsOnHighlight': true,
872 'underlayCallback': true,
873 'unhighlightCallback': true,
878 * This function will scan the option list and determine if they
879 * require us to recalculate the pixel positions of each point.
880 * TODO: move this into dygraph-options.js
881 * @param {!Array.<string>} labels a list of options to check.
882 * @param {!Object} attrs
883 * @return {boolean} true if the graph needs new points else false.
886 Dygraph
.isPixelChangingOptionList
= function(labels
, attrs
) {
887 // Assume that we do not require new points.
888 // This will change to true if we actually do need new points.
890 // Create a dictionary of series names for faster lookup.
891 // If there are no labels, then the dictionary stays empty.
892 var seriesNamesDictionary
= { };
894 for (var i
= 1; i
< labels
.length
; i
++) {
895 seriesNamesDictionary
[labels
[i
]] = true;
899 // Scan through a flat (i.e. non-nested) object of options.
900 // Returns true/false depending on whether
new points are needed
.
901 var scanFlatOptions
= function(options
) {
902 for (var property
in options
) {
903 if (options
.hasOwnProperty(property
) &&
904 !pixelSafeOptions
[property
]) {
911 // Iterate through the list of updated options.
912 for (var property
in attrs
) {
913 if (!attrs
.hasOwnProperty(property
)) continue;
915 // Find out of this field is actually a series specific options list.
916 if (property
== 'highlightSeriesOpts' ||
917 (seriesNamesDictionary
[property
] && !attrs
.series
)) {
918 // This property value is a list of options for this series.
919 if (scanFlatOptions(attrs
[property
])) return true;
920 } else if (property
== 'series' || property
== 'axes') {
921 // This is twice-nested options list.
922 var perSeries
= attrs
[property
];
923 for (var series
in perSeries
) {
924 if (perSeries
.hasOwnProperty(series
) &&
925 scanFlatOptions(perSeries
[series
])) {
930 // If this was not a series specific option list, check if it's a pixel
931 // changing property.
932 if (!pixelSafeOptions
[property
]) return true;
940 DEFAULT
: function(g
, name
, ctx
, canvasx
, canvasy
, color
, radius
) {
942 ctx
.fillStyle
= color
;
943 ctx
.arc(canvasx
, canvasy
, radius
, 0, 2 * Math
.PI
, false);
946 // For more shapes, include extras/shapes.js
950 * To create a "drag" interaction, you typically register a mousedown event
951 * handler on the element where the drag begins. In that handler, you register a
952 * mouseup handler on the window to determine when the mouse is released,
953 * wherever that release happens. This works well, except when the user releases
954 * the mouse over an off-domain iframe. In that case, the mouseup event is
955 * handled by the iframe and never bubbles up to the window handler.
957 * To deal with this issue, we cover iframes with high z-index divs to make sure
958 * they don't capture mouseup.
961 * element.addEventListener('mousedown', function() {
962 * var tarper = new Dygraph.IFrameTarp();
964 * var mouseUpHandler = function() {
966 * window.removeEventListener(mouseUpHandler);
969 * window.addEventListener('mouseup', mouseUpHandler);
974 Dygraph
.IFrameTarp
= function() {
975 /** @type {Array.<!HTMLDivElement>} */
980 * Find all the iframes in the document and cover them with high z-index
983 Dygraph
.IFrameTarp
.prototype.cover
= function() {
984 var iframes
= document
.getElementsByTagName("iframe");
985 for (var i
= 0; i
< iframes
.length
; i
++) {
986 var iframe
= iframes
[i
];
987 var pos
= Dygraph
.findPos(iframe
),
990 width
= iframe
.offsetWidth
,
991 height
= iframe
.offsetHeight
;
993 var div
= document
.createElement("div");
994 div
.style
.position
= "absolute";
995 div
.style
.left
= x
+ 'px';
996 div
.style
.top
= y
+ 'px';
997 div
.style
.width
= width
+ 'px';
998 div
.style
.height
= height
+ 'px';
999 div
.style
.zIndex
= 999;
1000 document
.body
.appendChild(div
);
1001 this.tarps
.push(div
);
1006 * Remove all the iframe covers. You should call this in a mouseup handler.
1008 Dygraph
.IFrameTarp
.prototype.uncover
= function() {
1009 for (var i
= 0; i
< this.tarps
.length
; i
++) {
1010 this.tarps
[i
].parentNode
.removeChild(this.tarps
[i
]);
1016 * Determine whether |data| is delimited by CR, CRLF, LF, LFCR.
1017 * @param {string} data
1018 * @return {?string} the delimiter that was detected (or null on failure).
1020 Dygraph
.detectLineDelimiter
= function(data
) {
1021 for (var i
= 0; i
< data
.length
; i
++) {
1022 var code
= data
.charAt(i
);
1023 if (code
=== '\r') {
1024 // Might actually be "\r\n".
1025 if (((i
+ 1) < data
.length
) && (data
.charAt(i
+ 1) === '\n')) {
1030 if (code
=== '\n') {
1031 // Might actually be "\n\r".
1032 if (((i
+ 1) < data
.length
) && (data
.charAt(i
+ 1) === '\r')) {
1043 * Is one node contained by another?
1044 * @param {Node} containee The contained node.
1045 * @param {Node} container The container node.
1046 * @return {boolean} Whether containee is inside (or equal to) container.
1049 Dygraph
.isNodeContainedBy
= function(containee
, container
) {
1050 if (container
=== null || containee
=== null) {
1053 var containeeNode
= /** @type {Node} */ (containee
);
1054 while (containeeNode
&& containeeNode
!== container
) {
1055 containeeNode
= containeeNode
.parentNode
;
1057 return (containeeNode
=== container
);
1061 // This masks some numeric issues in older versions of Firefox,
1062 // where 1.0/Math
.pow(10,2) != Math
.pow(10,-2).
1063 /** @type {function(number,number):number} */
1064 Dygraph
.pow
= function(base
, exp
) {
1066 return 1.0 / Math
.pow(base
, -exp
);
1068 return Math
.pow(base
, exp
);
1072 * Converts any valid CSS color (hex, rgb(), named color) to an RGB tuple.
1074 * @param {!string} colorStr Any valid CSS color string.
1075 * @return {{r:number,g:number,b:number}} Parsed RGB tuple.
1078 Dygraph
.toRGB_
= function(colorStr
) {
1079 // TODO(danvk): cache color parses to avoid repeated DOM manipulation.
1080 var div
= document
.createElement('div');
1081 div
.style
.backgroundColor
= colorStr
;
1082 div
.style
.visibility
= 'hidden';
1083 document
.body
.appendChild(div
);
1084 var rgbStr
= window
.getComputedStyle(div
, null).backgroundColor
;
1085 document
.body
.removeChild(div
);
1086 var bits
= /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(rgbStr
);
1088 r
: parseInt(bits
[1], 10),
1089 g
: parseInt(bits
[2], 10),
1090 b
: parseInt(bits
[3], 10)
1095 * Checks whether the browser supports the <canvas> tag.
1096 * @param {HTMLCanvasElement=} opt_canvasElement Pass a canvas element as an
1097 * optimization if you have one.
1098 * @return {boolean} Whether the browser supports canvas.
1100 Dygraph
.isCanvasSupported
= function(opt_canvasElement
) {
1102 var canvas
= opt_canvasElement
|| document
.createElement("canvas");
1103 canvas
.getContext("2d");
1111 * Parses the value as a floating point number. This is like the parseFloat()
1112 * built-in, but with a few differences:
1113 * - the empty string is parsed as null, rather than NaN.
1114 * - if the string cannot be parsed at all, an error is logged.
1115 * If the string can't be parsed, this method returns null.
1116 * @param {string} x The string to be parsed
1117 * @param {number=} opt_line_no The line number from which the string comes.
1118 * @param {string=} opt_line The text of the line from which the string comes.
1120 Dygraph
.parseFloat_
= function(x
, opt_line_no
, opt_line
) {
1121 var val
= parseFloat(x
);
1122 if (!isNaN(val
)) return val
;
1124 // Try to figure out what happeend.
1125 // If the value is the empty string, parse it as null.
1126 if (/^ *$/.test(x
)) return null;
1128 // If it was actually "NaN", return it as NaN.
1129 if (/^ *nan *$/i.test(x
)) return NaN
;
1131 // Looks like a parsing error.
1132 var msg
= "Unable to parse '" + x
+ "' as a number";
1133 if (opt_line
!== undefined
&& opt_line_no
!== undefined
) {
1134 msg
+= " on line " + (1+(opt_line_no
||0)) + " ('" + opt_line
+ "') of CSV.";