Remove isAndroid checks (#784)
[dygraphs.git] / src / dygraph-utils.js
CommitLineData
88e95c46
DV
1/**
2 * @license
3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
dedb4f5f 6
004b5c90
DV
7/**
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.
12 */
dedb4f5f 13
9901b0c1 14/*global Dygraph:false, Node:false */
c0f54d4f
DV
15"use strict";
16
6ecc0739
DV
17import * as DygraphTickers from './dygraph-tickers';
18
19export var LOG_SCALE = 10;
20export var LN_TEN = Math.log(LOG_SCALE);
dedb4f5f 21
f11283de
DV
22/**
23 * @private
24 * @param {number} x
25 * @return {number}
26 */
6ecc0739
DV
27export var log10 = function(x) {
28 return Math.log(x) / LN_TEN;
758a629f 29};
dedb4f5f 30
f1d5ee3e
KW
31/**
32 * @private
33 * @param {number} r0
34 * @param {number} r1
35 * @param {number} pct
36 * @return {number}
37 */
38export var logRangeFraction = function(r0, r1, pct) {
39 // Computing the inverse of toPercentXCoord. The function was arrived at with
40 // the following steps:
41 //
42 // Original calcuation:
43 // pct = (log(x) - log(xRange[0])) / (log(xRange[1]) - log(xRange[0])));
44 //
45 // Multiply both sides by the right-side demoninator.
46 // pct * (log(xRange[1] - log(xRange[0]))) = log(x) - log(xRange[0])
47 //
48 // add log(xRange[0]) to both sides
49 // log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0])) = log(x);
50 //
51 // Swap both sides of the equation,
52 // log(x) = log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0]))
53 //
54 // Use both sides as the exponent in 10^exp and we're done.
55 // x = 10 ^ (log(xRange[0]) + (pct * (log(xRange[1]) - log(xRange[0])))
56
57 var logr0 = log10(r0);
58 var logr1 = log10(r1);
59 var exponent = logr0 + (pct * (logr1 - logr0));
60 var value = Math.pow(LOG_SCALE, exponent);
61 return value;
62};
63
79253bd0 64/** A dotted line stroke pattern. */
6ecc0739 65export var DOTTED_LINE = [2, 2];
79253bd0 66/** A dashed line stroke pattern. */
6ecc0739 67export var DASHED_LINE = [7, 3];
79253bd0 68/** A dot dash stroke pattern. */
6ecc0739
DV
69export var DOT_DASH_LINE = [7, 2, 2, 2];
70
71// Directions for panning and zooming. Use bit operations when combined
72// values are possible.
73export var HORIZONTAL = 1;
74export var VERTICAL = 2;
79253bd0 75
dedb4f5f 76/**
dedb4f5f
DV
77 * Return the 2d context for a dygraph canvas.
78 *
79 * This method is only exposed for the sake of replacing the function in
6ecc0739 80 * automated tests.
dedb4f5f 81 *
f11283de
DV
82 * @param {!HTMLCanvasElement} canvas
83 * @return {!CanvasRenderingContext2D}
84 * @private
dedb4f5f 85 */
6ecc0739 86export var getContext = function(canvas) {
f11283de 87 return /** @type{!CanvasRenderingContext2D}*/(canvas.getContext("2d"));
dedb4f5f
DV
88};
89
90/**
9901b0c1 91 * Add an event handler.
39b33f9f
DV
92 * @param {!Node} elem The element to add the event to.
93 * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
94 * @param {function(Event):(boolean|undefined)} fn The function to call
f11283de
DV
95 * on the event. The function takes one parameter: the event object.
96 * @private
dedb4f5f 97 */
6ecc0739 98export var addEvent = function addEvent(elem, type, fn) {
9901b0c1 99 elem.addEventListener(type, fn, false);
1cc3540b
RK
100};
101
102/**
9901b0c1 103 * Remove an event handler.
39b33f9f 104 * @param {!Node} elem The element to remove the event from.
f11283de
DV
105 * @param {string} type The type of the event, e.g. 'click' or 'mousemove'.
106 * @param {function(Event):(boolean|undefined)} fn The function to call
107 * on the event. The function takes one parameter: the event object.
ccd9d7c2 108 */
6ecc0739 109export function removeEvent(elem, type, fn) {
9901b0c1 110 elem.removeEventListener(type, fn, false);
dedb4f5f
DV
111};
112
113/**
dedb4f5f
DV
114 * Cancels further processing of an event. This is useful to prevent default
115 * browser actions, e.g. highlighting text on a double-click.
116 * Based on the article at
117 * http://www.switchonthecode.com/tutorials/javascript-tutorial-the-scroll-wheel
39b33f9f 118 * @param {!Event} e The event whose normal behavior should be canceled.
f11283de 119 * @private
dedb4f5f 120 */
6ecc0739 121export function cancelEvent(e) {
dedb4f5f
DV
122 e = e ? e : window.event;
123 if (e.stopPropagation) {
124 e.stopPropagation();
125 }
126 if (e.preventDefault) {
127 e.preventDefault();
128 }
129 e.cancelBubble = true;
130 e.cancel = true;
131 e.returnValue = false;
132 return false;
133};
134
135/**
136 * Convert hsv values to an rgb(r,g,b) string. Taken from MochiKit.Color. This
137 * is used to generate default series colors which are evenly spaced on the
138 * color wheel.
f11283de
DV
139 * @param { number } hue Range is 0.0-1.0.
140 * @param { number } saturation Range is 0.0-1.0.
141 * @param { number } value Range is 0.0-1.0.
142 * @return { string } "rgb(r,g,b)" where r, g and b range from 0-255.
dedb4f5f
DV
143 * @private
144 */
6ecc0739 145export function hsvToRGB(hue, saturation, value) {
dedb4f5f
DV
146 var red;
147 var green;
148 var blue;
149 if (saturation === 0) {
150 red = value;
151 green = value;
152 blue = value;
153 } else {
154 var i = Math.floor(hue * 6);
155 var f = (hue * 6) - i;
156 var p = value * (1 - saturation);
157 var q = value * (1 - (saturation * f));
158 var t = value * (1 - (saturation * (1 - f)));
159 switch (i) {
160 case 1: red = q; green = value; blue = p; break;
161 case 2: red = p; green = value; blue = t; break;
162 case 3: red = p; green = q; blue = value; break;
163 case 4: red = t; green = p; blue = value; break;
164 case 5: red = value; green = p; blue = q; break;
165 case 6: // fall through
166 case 0: red = value; green = t; blue = p; break;
167 }
168 }
169 red = Math.floor(255 * red + 0.5);
170 green = Math.floor(255 * green + 0.5);
171 blue = Math.floor(255 * blue + 0.5);
172 return 'rgb(' + red + ',' + green + ',' + blue + ')';
173};
174
8442269f 175/**
464b5f50
DV
176 * Find the coordinates of an object relative to the top left of the page.
177 *
f11283de 178 * @param {Node} obj
464b5f50 179 * @return {{x:number,y:number}}
8442269f
RK
180 * @private
181 */
6ecc0739 182export function findPos(obj) {
4debe18e
MJ
183 var p = obj.getBoundingClientRect(),
184 w = window,
185 d = document.documentElement;
464b5f50 186
4debe18e 187 return {
9013cfe5
MJ
188 x: p.left + (w.pageXOffset || d.scrollLeft),
189 y: p.top + (w.pageYOffset || d.scrollTop)
8442269f 190 }
dedb4f5f
DV
191};
192
193/**
dedb4f5f
DV
194 * Returns the x-coordinate of the event in a coordinate system where the
195 * top-left corner of the page (not the window) is (0,0).
196 * Taken from MochiKit.Signal
f11283de
DV
197 * @param {!Event} e
198 * @return {number}
199 * @private
dedb4f5f 200 */
6ecc0739 201export function pageX(e) {
920e93f2 202 return (!e.pageX || e.pageX < 0) ? 0 : e.pageX;
dedb4f5f
DV
203};
204
205/**
dedb4f5f
DV
206 * Returns the y-coordinate of the event in a coordinate system where the
207 * top-left corner of the page (not the window) is (0,0).
208 * Taken from MochiKit.Signal
f11283de
DV
209 * @param {!Event} e
210 * @return {number}
211 * @private
dedb4f5f 212 */
6ecc0739 213export function pageY(e) {
920e93f2 214 return (!e.pageY || e.pageY < 0) ? 0 : e.pageY;
dedb4f5f
DV
215};
216
217/**
806f92c1
DV
218 * Converts page the x-coordinate of the event to pixel x-coordinates on the
219 * canvas (i.e. DOM Coords).
220 * @param {!Event} e Drag event.
221 * @param {!DygraphInteractionContext} context Interaction context object.
222 * @return {number} The amount by which the drag has moved to the right.
223 */
6ecc0739
DV
224export function dragGetX_(e, context) {
225 return pageX(e) - context.px;
806f92c1
DV
226};
227
228/**
229 * Converts page the y-coordinate of the event to pixel y-coordinates on the
230 * canvas (i.e. DOM Coords).
231 * @param {!Event} e Drag event.
232 * @param {!DygraphInteractionContext} context Interaction context object.
233 * @return {number} The amount by which the drag has moved down.
234 */
6ecc0739
DV
235export function dragGetY_(e, context) {
236 return pageY(e) - context.py;
806f92c1
DV
237};
238
239/**
f11283de
DV
240 * This returns true unless the parameter is 0, null, undefined or NaN.
241 * TODO(danvk): rename this function to something like 'isNonZeroNan'.
242 *
243 * @param {number} x The number to consider.
244 * @return {boolean} Whether the number is zero or NaN.
dedb4f5f 245 * @private
dedb4f5f 246 */
6ecc0739 247export function isOK(x) {
f11283de 248 return !!x && !isNaN(x);
dedb4f5f
DV
249};
250
251/**
55deb02f 252 * @param {{x:?number,y:?number,yval:?number}} p The point to consider, valid
f11283de 253 * points are {x, y} objects
55deb02f
DV
254 * @param {boolean=} opt_allowNaNY Treat point with y=NaN as valid
255 * @return {boolean} Whether the point has numeric x and y.
62c3d2fd 256 * @private
62c3d2fd 257 */
6ecc0739 258export function isValidPoint(p, opt_allowNaNY) {
f11283de
DV
259 if (!p) return false; // null or undefined object
260 if (p.yval === null) return false; // missing point
04c104d7
KW
261 if (p.x === null || p.x === undefined) return false;
262 if (p.y === null || p.y === undefined) return false;
55deb02f 263 if (isNaN(p.x) || (!opt_allowNaNY && isNaN(p.y))) return false;
62c3d2fd
KW
264 return true;
265};
266
267/**
dedb4f5f
DV
268 * Number formatting function which mimicks the behavior of %g in printf, i.e.
269 * either exponential or fixed format (without trailing 0s) is used depending on
270 * the length of the generated string. The advantage of this format is that
271 * there is a predictable upper bound on the resulting string length,
272 * significant figures are not dropped, and normal numbers are not displayed in
273 * exponential notation.
274 *
275 * NOTE: JavaScript's native toPrecision() is NOT a drop-in replacement for %g.
276 * It creates strings which are too long for absolute values between 10^-4 and
277 * 10^-6, e.g. '0.00001' instead of '1e-5'. See tests/number-format.html for
278 * output examples.
279 *
f11283de
DV
280 * @param {number} x The number to format
281 * @param {number=} opt_precision The precision to use, default 2.
282 * @return {string} A string formatted like %g in printf. The max generated
dedb4f5f
DV
283 * string length should be precision + 6 (e.g 1.123e+300).
284 */
6ecc0739 285export function floatFormat(x, opt_precision) {
dedb4f5f
DV
286 // Avoid invalid precision values; [1, 21] is the valid range.
287 var p = Math.min(Math.max(1, opt_precision || 2), 21);
288
289 // This is deceptively simple. The actual algorithm comes from:
290 //
291 // Max allowed length = p + 4
292 // where 4 comes from 'e+n' and '.'.
293 //
294 // Length of fixed format = 2 + y + p
295 // where 2 comes from '0.' and y = # of leading zeroes.
296 //
297 // Equating the two and solving for y yields y = 2, or 0.00xxxx which is
298 // 1.0e-3.
299 //
300 // Since the behavior of toPrecision() is identical for larger numbers, we
301 // don't have to worry about the other bound.
302 //
303 // Finally, the argument for toExponential() is the number of trailing digits,
304 // so we take off 1 for the value before the '.'.
758a629f 305 return (Math.abs(x) < 1.0e-3 && x !== 0.0) ?
dedb4f5f
DV
306 x.toExponential(p - 1) : x.toPrecision(p);
307};
308
309/**
dedb4f5f 310 * Converts '9' to '09' (useful for dates)
f11283de
DV
311 * @param {number} x
312 * @return {string}
313 * @private
dedb4f5f 314 */
6ecc0739 315export function zeropad(x) {
dedb4f5f
DV
316 if (x < 10) return "0" + x; else return "" + x;
317};
318
319/**
b77d7a56 320 * Date accessors to get the parts of a calendar date (year, month,
1e7f8af0
JPB
321 * day, hour, minute, second and millisecond) according to local time,
322 * and factory method to call the Date constructor with an array of arguments.
323 */
6ecc0739
DV
324export var DateAccessorsLocal = {
325 getFullYear: d => d.getFullYear(),
326 getMonth: d => d.getMonth(),
327 getDate: d => d.getDate(),
328 getHours: d => d.getHours(),
329 getMinutes: d => d.getMinutes(),
330 getSeconds: d => d.getSeconds(),
331 getMilliseconds: d => d.getMilliseconds(),
332 getDay: d => d.getDay(),
1e7f8af0
JPB
333 makeDate: function(y, m, d, hh, mm, ss, ms) {
334 return new Date(y, m, d, hh, mm, ss, ms);
335 }
336};
337
338/**
b77d7a56 339 * Date accessors to get the parts of a calendar date (year, month,
1e7f8af0
JPB
340 * day of month, hour, minute, second and millisecond) according to UTC time,
341 * and factory method to call the Date constructor with an array of arguments.
342 */
6ecc0739
DV
343export var DateAccessorsUTC = {
344 getFullYear: d => d.getUTCFullYear(),
345 getMonth: d => d.getUTCMonth(),
346 getDate: d => d.getUTCDate(),
347 getHours: d => d.getUTCHours(),
348 getMinutes: d => d.getUTCMinutes(),
349 getSeconds: d => d.getUTCSeconds(),
350 getMilliseconds: d => d.getUTCMilliseconds(),
351 getDay: d => d.getUTCDay(),
1e7f8af0
JPB
352 makeDate: function(y, m, d, hh, mm, ss, ms) {
353 return new Date(Date.UTC(y, m, d, hh, mm, ss, ms));
354 }
355};
356
357/**
dedb4f5f 358 * Return a string version of the hours, minutes and seconds portion of a date.
872a6a00
DV
359 * @param {number} hh The hours (from 0-23)
360 * @param {number} mm The minutes (from 0-59)
361 * @param {number} ss The seconds (from 0-59)
362 * @return {string} A time of the form "HH:MM" or "HH:MM:SS"
dedb4f5f
DV
363 * @private
364 */
2d0fdf6e 365export function hmsString_(hh, mm, ss, ms) {
872a6a00
DV
366 var ret = zeropad(hh) + ":" + zeropad(mm);
367 if (ss) {
368 ret += ":" + zeropad(ss);
2d0fdf6e
PK
369 if (ms) {
370 var str = "" + ms;
371 ret += "." + ('000'+str).substring(str.length);
372 }
dedb4f5f 373 }
872a6a00 374 return ret;
dedb4f5f
DV
375};
376
377/**
872a6a00 378 * Convert a JS date (millis since epoch) to a formatted string.
1e7f8af0 379 * @param {number} time The JavaScript time value (ms since epoch)
872a6a00
DV
380 * @param {boolean} utc Wether output UTC or local time
381 * @return {string} A date of one of these forms:
382 * "YYYY/MM/DD", "YYYY/MM/DD HH:MM" or "YYYY/MM/DD HH:MM:SS"
464b5f50
DV
383 * @private
384 */
6ecc0739
DV
385export function dateString_(time, utc) {
386 var accessors = utc ? DateAccessorsUTC : DateAccessorsLocal;
1e7f8af0
JPB
387 var date = new Date(time);
388 var y = accessors.getFullYear(date);
389 var m = accessors.getMonth(date);
390 var d = accessors.getDate(date);
391 var hh = accessors.getHours(date);
392 var mm = accessors.getMinutes(date);
393 var ss = accessors.getSeconds(date);
2d0fdf6e 394 var ms = accessors.getMilliseconds(date);
872a6a00
DV
395 // Get a year string:
396 var year = "" + y;
464b5f50 397 // Get a 0 padded month string
872a6a00 398 var month = zeropad(m + 1); //months are 0-offset, sigh
464b5f50 399 // Get a 0 padded day string
872a6a00 400 var day = zeropad(d);
2d0fdf6e 401 var frac = hh * 3600 + mm * 60 + ss + 1e-3 * ms;
872a6a00
DV
402 var ret = year + "/" + month + "/" + day;
403 if (frac) {
2d0fdf6e 404 ret += " " + hmsString_(hh, mm, ss, ms);
872a6a00
DV
405 }
406 return ret;
464b5f50
DV
407};
408
409/**
dedb4f5f 410 * Round a number to the specified number of digits past the decimal point.
f11283de
DV
411 * @param {number} num The number to round
412 * @param {number} places The number of decimals to which to round
413 * @return {number} The rounded number
dedb4f5f
DV
414 * @private
415 */
6ecc0739 416export function round_(num, places) {
dedb4f5f
DV
417 var shift = Math.pow(10, places);
418 return Math.round(num * shift)/shift;
419};
420
421/**
dedb4f5f
DV
422 * Implementation of binary search over an array.
423 * Currently does not work when val is outside the range of arry's values.
f11283de
DV
424 * @param {number} val the value to search for
425 * @param {Array.<number>} arry is the value over which to search
426 * @param {number} abs If abs > 0, find the lowest entry greater than val
427 * If abs < 0, find the highest entry less than val.
428 * If abs == 0, find the entry that equals val.
429 * @param {number=} low The first index in arry to consider (optional)
430 * @param {number=} high The last index in arry to consider (optional)
431 * @return {number} Index of the element, or -1 if it isn't found.
432 * @private
dedb4f5f 433 */
6ecc0739 434export function binarySearch(val, arry, abs, low, high) {
758a629f
DV
435 if (low === null || low === undefined ||
436 high === null || high === undefined) {
dedb4f5f
DV
437 low = 0;
438 high = arry.length - 1;
439 }
440 if (low > high) {
441 return -1;
442 }
758a629f 443 if (abs === null || abs === undefined) {
dedb4f5f
DV
444 abs = 0;
445 }
446 var validIndex = function(idx) {
447 return idx >= 0 && idx < arry.length;
758a629f
DV
448 };
449 var mid = parseInt((low + high) / 2, 10);
dedb4f5f 450 var element = arry[mid];
f11283de 451 var idx;
dedb4f5f
DV
452 if (element == val) {
453 return mid;
f11283de 454 } else if (element > val) {
dedb4f5f
DV
455 if (abs > 0) {
456 // Accept if element > val, but also if prior element < val.
758a629f 457 idx = mid - 1;
dedb4f5f
DV
458 if (validIndex(idx) && arry[idx] < val) {
459 return mid;
460 }
461 }
6ecc0739 462 return binarySearch(val, arry, abs, low, mid - 1);
f11283de 463 } else if (element < val) {
dedb4f5f
DV
464 if (abs < 0) {
465 // Accept if element < val, but also if prior element > val.
758a629f 466 idx = mid + 1;
dedb4f5f
DV
467 if (validIndex(idx) && arry[idx] > val) {
468 return mid;
469 }
470 }
6ecc0739 471 return binarySearch(val, arry, abs, mid + 1, high);
dedb4f5f 472 }
f11283de 473 return -1; // can't actually happen, but makes closure compiler happy
dedb4f5f
DV
474};
475
476/**
dedb4f5f
DV
477 * Parses a date, returning the number of milliseconds since epoch. This can be
478 * passed in as an xValueParser in the Dygraph constructor.
479 * TODO(danvk): enumerate formats that this understands.
f11283de
DV
480 *
481 * @param {string} dateStr A date in a variety of possible string formats.
482 * @return {number} Milliseconds since epoch.
483 * @private
dedb4f5f 484 */
6ecc0739 485export function dateParser(dateStr) {
dedb4f5f
DV
486 var dateStrSlashed;
487 var d;
769e8bc7 488
3f675fe5
DV
489 // Let the system try the format first, with one caveat:
490 // YYYY-MM-DD[ HH:MM:SS] is interpreted as UTC by a variety of browsers.
491 // dygraphs displays dates in local time, so this will result in surprising
492 // inconsistencies. But if you specify "T" or "Z" (i.e. YYYY-MM-DDTHH:MM:SS),
493 // then you probably know what you're doing, so we'll let you go ahead.
494 // Issue: http://code.google.com/p/dygraphs/issues/detail?id=255
495 if (dateStr.search("-") == -1 ||
496 dateStr.search("T") != -1 || dateStr.search("Z") != -1) {
6ecc0739 497 d = dateStrToMillis(dateStr);
3f675fe5
DV
498 if (d && !isNaN(d)) return d;
499 }
769e8bc7 500
dedb4f5f
DV
501 if (dateStr.search("-") != -1) { // e.g. '2009-7-12' or '2009-07-12'
502 dateStrSlashed = dateStr.replace("-", "/", "g");
503 while (dateStrSlashed.search("-") != -1) {
504 dateStrSlashed = dateStrSlashed.replace("-", "/");
505 }
6ecc0739 506 d = dateStrToMillis(dateStrSlashed);
dedb4f5f
DV
507 } else if (dateStr.length == 8) { // e.g. '20090712'
508 // TODO(danvk): remove support for this format. It's confusing.
758a629f
DV
509 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2) + "/" +
510 dateStr.substr(6,2);
6ecc0739 511 d = dateStrToMillis(dateStrSlashed);
dedb4f5f
DV
512 } else {
513 // Any format that Date.parse will accept, e.g. "2009/07/12" or
514 // "2009/07/12 12:34:56"
6ecc0739 515 d = dateStrToMillis(dateStr);
dedb4f5f
DV
516 }
517
518 if (!d || isNaN(d)) {
8a68db7d 519 console.error("Couldn't parse " + dateStr + " as a date");
dedb4f5f
DV
520 }
521 return d;
522};
523
524/**
dedb4f5f
DV
525 * This is identical to JavaScript's built-in Date.parse() method, except that
526 * it doesn't get replaced with an incompatible method by aggressive JS
527 * libraries like MooTools or Joomla.
f11283de
DV
528 * @param {string} str The date string, e.g. "2011/05/06"
529 * @return {number} millis since epoch
530 * @private
dedb4f5f 531 */
6ecc0739 532export function dateStrToMillis(str) {
dedb4f5f
DV
533 return new Date(str).getTime();
534};
535
536// These functions are all based on MochiKit.
537/**
538 * Copies all the properties from o to self.
539 *
f11283de
DV
540 * @param {!Object} self
541 * @param {!Object} o
542 * @return {!Object}
dedb4f5f 543 */
6ecc0739 544export function update(self, o) {
dedb4f5f
DV
545 if (typeof(o) != 'undefined' && o !== null) {
546 for (var k in o) {
547 if (o.hasOwnProperty(k)) {
548 self[k] = o[k];
549 }
550 }
551 }
552 return self;
553};
554
555/**
48e614ac
DV
556 * Copies all the properties from o to self.
557 *
f11283de
DV
558 * @param {!Object} self
559 * @param {!Object} o
560 * @return {!Object}
48e614ac
DV
561 * @private
562 */
6ecc0739 563export function updateDeep(self, o) {
920208fb
PF
564 // Taken from http://stackoverflow.com/questions/384286/javascript-isdom-how-do-you-check-if-a-javascript-object-is-a-dom-object
565 function isNode(o) {
566 return (
567 typeof Node === "object" ? o instanceof Node :
568 typeof o === "object" && typeof o.nodeType === "number" && typeof o.nodeName==="string"
569 );
570 }
571
48e614ac
DV
572 if (typeof(o) != 'undefined' && o !== null) {
573 for (var k in o) {
574 if (o.hasOwnProperty(k)) {
758a629f 575 if (o[k] === null) {
48e614ac 576 self[k] = null;
6ecc0739 577 } else if (isArrayLike(o[k])) {
48e614ac 578 self[k] = o[k].slice();
920208fb 579 } else if (isNode(o[k])) {
66ad3609
RK
580 // DOM objects are shallowly-copied.
581 self[k] = o[k];
48e614ac 582 } else if (typeof(o[k]) == 'object') {
c1c5dfeb 583 if (typeof(self[k]) != 'object' || self[k] === null) {
48e614ac
DV
584 self[k] = {};
585 }
6ecc0739 586 updateDeep(self[k], o[k]);
48e614ac
DV
587 } else {
588 self[k] = o[k];
589 }
590 }
591 }
592 }
593 return self;
594};
595
596/**
55deb02f 597 * @param {*} o
f11283de 598 * @return {boolean}
dedb4f5f
DV
599 * @private
600 */
6ecc0739 601export function isArrayLike(o) {
dedb4f5f
DV
602 var typ = typeof(o);
603 if (
604 (typ != 'object' && !(typ == 'function' &&
605 typeof(o.item) == 'function')) ||
606 o === null ||
607 typeof(o.length) != 'number' ||
608 o.nodeType === 3
609 ) {
610 return false;
611 }
612 return true;
613};
614
615/**
f11283de
DV
616 * @param {Object} o
617 * @return {boolean}
dedb4f5f
DV
618 * @private
619 */
6ecc0739 620export function isDateLike(o) {
dedb4f5f
DV
621 if (typeof(o) != "object" || o === null ||
622 typeof(o.getTime) != 'function') {
623 return false;
624 }
625 return true;
626};
627
628/**
48e614ac 629 * Note: this only seems to work for arrays.
f11283de
DV
630 * @param {!Array} o
631 * @return {!Array}
dedb4f5f
DV
632 * @private
633 */
6ecc0739 634export function clone(o) {
dedb4f5f
DV
635 // TODO(danvk): figure out how MochiKit's version works
636 var r = [];
637 for (var i = 0; i < o.length; i++) {
6ecc0739 638 if (isArrayLike(o[i])) {
e8c70e4e 639 r.push(clone(o[i]));
dedb4f5f
DV
640 } else {
641 r.push(o[i]);
642 }
643 }
644 return r;
645};
646
647/**
9901b0c1 648 * Create a new canvas element.
f11283de
DV
649 *
650 * @return {!HTMLCanvasElement}
651 * @private
dedb4f5f 652 */
6ecc0739 653export function createCanvas() {
9901b0c1 654 return document.createElement('canvas');
dedb4f5f 655};
9ca829f2
DV
656
657/**
37819481
PH
658 * Returns the context's pixel ratio, which is the ratio between the device
659 * pixel ratio and the backing store ratio. Typically this is 1 for conventional
660 * displays, and > 1 for HiDPI displays (such as the Retina MBP).
661 * See http://www.html5rocks.com/en/tutorials/canvas/hidpi/ for more details.
662 *
663 * @param {!CanvasRenderingContext2D} context The canvas's 2d context.
664 * @return {number} The ratio of the device pixel ratio and the backing store
665 * ratio for the specified context.
666 */
6ecc0739 667export function getContextPixelRatio(context) {
37819481 668 try {
8241944b
GJ
669 var devicePixelRatio = window.devicePixelRatio;
670 var backingStoreRatio = context.webkitBackingStorePixelRatio ||
37819481
PH
671 context.mozBackingStorePixelRatio ||
672 context.msBackingStorePixelRatio ||
673 context.oBackingStorePixelRatio ||
3a0e53a4
AK
674 context.backingStorePixelRatio || 1;
675 if (devicePixelRatio !== undefined) {
8241944b
GJ
676 return devicePixelRatio / backingStoreRatio;
677 } else {
3a0e53a4
AK
678 // At least devicePixelRatio must be defined for this ratio to make sense.
679 // We default backingStoreRatio to 1: this does not exist on some browsers
680 // (i.e. desktop Chrome).
8241944b
GJ
681 return 1;
682 }
37819481
PH
683 } catch (e) {
684 return 1;
685 }
686};
687
688/**
f11283de
DV
689 * TODO(danvk): use @template here when it's better supported for classes.
690 * @param {!Array} array
691 * @param {number} start
692 * @param {number} length
45a8c16f 693 * @param {function(!Array,?):boolean=} predicate
f11283de
DV
694 * @constructor
695 */
6ecc0739 696export function Iterator(array, start, length, predicate) {
a26206cf
RK
697 start = start || 0;
698 length = length || array.length;
ff1074cd
RK
699 this.hasNext = true; // Use to identify if there's another element.
700 this.peek = null; // Use for look-ahead
0f20de1c 701 this.start_ = start;
a26206cf
RK
702 this.array_ = array;
703 this.predicate_ = predicate;
704 this.end_ = Math.min(array.length, start + length);
ff1074cd
RK
705 this.nextIdx_ = start - 1; // use -1 so initial advance works.
706 this.next(); // ignoring result.
42a9ebb8 707};
a26206cf 708
f11283de
DV
709/**
710 * @return {Object}
711 */
6ecc0739 712Iterator.prototype.next = function() {
ff1074cd
RK
713 if (!this.hasNext) {
714 return null;
a26206cf 715 }
ff1074cd 716 var obj = this.peek;
a26206cf 717
ff1074cd
RK
718 var nextIdx = this.nextIdx_ + 1;
719 var found = false;
720 while (nextIdx < this.end_) {
a26206cf 721 if (!this.predicate_ || this.predicate_(this.array_, nextIdx)) {
ff1074cd
RK
722 this.peek = this.array_[nextIdx];
723 found = true;
724 break;
a26206cf
RK
725 }
726 nextIdx++;
727 }
728 this.nextIdx_ = nextIdx;
ff1074cd
RK
729 if (!found) {
730 this.hasNext = false;
731 this.peek = null;
732 }
733 return obj;
42a9ebb8 734};
a26206cf 735
971870e5 736/**
222d67c9 737 * Returns a new iterator over array, between indexes start and
7d1afbb9
RK
738 * start + length, and only returns entries that pass the accept function
739 *
f11283de
DV
740 * @param {!Array} array the array to iterate over.
741 * @param {number} start the first index to iterate over, 0 if absent.
742 * @param {number} length the number of elements in the array to iterate over.
743 * This, along with start, defines a slice of the array, and so length
744 * doesn't imply the number of elements in the iterator when accept doesn't
745 * always accept all values. array.length when absent.
45a8c16f 746 * @param {function(?):boolean=} opt_predicate a function that takes
f11283de
DV
747 * parameters array and idx, which returns true when the element should be
748 * returned. If omitted, all elements are accepted.
749 * @private
7d1afbb9 750 */
6ecc0739
DV
751export function createIterator(array, start, length, opt_predicate) {
752 return new Iterator(array, start, length, opt_predicate);
7d1afbb9
RK
753};
754
a96b8ba3
A
755// Shim layer with setTimeout fallback.
756// From: http://paulirish.com/2011/requestanimationframe-for-smart-animating/
e9a32469
A
757// Should be called with the window context:
758// Dygraph.requestAnimFrame.call(window, function() {})
6ecc0739 759export var requestAnimFrame = (function() {
a96b8ba3
A
760 return window.requestAnimationFrame ||
761 window.webkitRequestAnimationFrame ||
762 window.mozRequestAnimationFrame ||
763 window.oRequestAnimationFrame ||
764 window.msRequestAnimationFrame ||
765 function (callback) {
766 window.setTimeout(callback, 1000 / 60);
767 };
768})();
769
770/**
d91ba598
A
771 * Call a function at most maxFrames times at an attempted interval of
772 * framePeriodInMillis, then call a cleanup function once. repeatFn is called
773 * once immediately, then at most (maxFrames - 1) times asynchronously. If
774 * maxFrames==1, then cleanup_fn() is also called synchronously. This function
775 * is used to sequence animation.
776 * @param {function(number)} repeatFn Called repeatedly -- takes the frame
777 * number (from 0 to maxFrames-1) as an argument.
778 * @param {number} maxFrames The max number of times to call repeatFn
779 * @param {number} framePeriodInMillis Max requested time between frames.
780 * @param {function()} cleanupFn A function to call after all repeatFn calls.
781 * @private
782 */
6ecc0739 783export function repeatAndCleanup(repeatFn, maxFrames, framePeriodInMillis,
bec100ae 784 cleanupFn) {
d91ba598
A
785 var frameNumber = 0;
786 var previousFrameNumber;
787 var startTime = new Date().getTime();
788 repeatFn(frameNumber);
789 if (maxFrames == 1) {
790 cleanupFn();
b1a3b195
DV
791 return;
792 }
d91ba598 793 var maxFrameArg = maxFrames - 1;
b1a3b195
DV
794
795 (function loop() {
d91ba598 796 if (frameNumber >= maxFrames) return;
e8c70e4e 797 requestAnimFrame.call(window, function() {
d91ba598
A
798 // Determine which frame to draw based on the delay so far. Will skip
799 // frames if necessary.
800 var currentTime = new Date().getTime();
801 var delayInMillis = currentTime - startTime;
802 previousFrameNumber = frameNumber;
803 frameNumber = Math.floor(delayInMillis / framePeriodInMillis);
804 var frameDelta = frameNumber - previousFrameNumber;
805 // If we predict that the subsequent repeatFn call will overshoot our
806 // total frame target, so our last call will cause a stutter, then jump to
807 // the last call immediately. If we're going to cause a stutter, better
808 // to do it faster than slower.
809 var predictOvershootStutter = (frameNumber + frameDelta) > maxFrameArg;
810 if (predictOvershootStutter || (frameNumber >= maxFrameArg)) {
811 repeatFn(maxFrameArg); // Ensure final call with maxFrameArg.
812 cleanupFn();
b1a3b195 813 } else {
83b0c192 814 if (frameDelta !== 0) { // Don't call repeatFn with duplicate frames.
d91ba598
A
815 repeatFn(frameNumber);
816 }
b1a3b195
DV
817 loop();
818 }
a96b8ba3 819 });
b1a3b195
DV
820 })();
821};
822
8887663f
DV
823// A whitelist of options that do not change pixel positions.
824var pixelSafeOptions = {
825 'annotationClickHandler': true,
826 'annotationDblClickHandler': true,
827 'annotationMouseOutHandler': true,
828 'annotationMouseOverHandler': true,
8887663f
DV
829 'axisLineColor': true,
830 'axisLineWidth': true,
831 'clickCallback': true,
832 'drawCallback': true,
833 'drawHighlightPointCallback': true,
834 'drawPoints': true,
835 'drawPointCallback': true,
bfb3e0a4 836 'drawGrid': true,
8887663f
DV
837 'fillAlpha': true,
838 'gridLineColor': true,
839 'gridLineWidth': true,
840 'hideOverlayOnMouseOut': true,
841 'highlightCallback': true,
842 'highlightCircleSize': true,
843 'interactionModel': true,
844 'isZoomedIgnoreProgrammaticZoom': true,
845 'labelsDiv': true,
8887663f
DV
846 'labelsKMB': true,
847 'labelsKMG2': true,
848 'labelsSeparateLines': true,
849 'labelsShowZeroValues': true,
850 'legend': true,
851 'panEdgeFraction': true,
852 'pixelsPerYLabel': true,
853 'pointClickCallback': true,
854 'pointSize': true,
855 'rangeSelectorPlotFillColor': true,
79cb28dd 856 'rangeSelectorPlotFillGradientColor': true,
8887663f 857 'rangeSelectorPlotStrokeColor': true,
fb24d32c 858 'rangeSelectorBackgroundStrokeColor': true,
859 'rangeSelectorBackgroundLineWidth': true,
b77d7a56 860 'rangeSelectorPlotLineWidth': true,
fb24d32c 861 'rangeSelectorForegroundStrokeColor': true,
862 'rangeSelectorForegroundLineWidth': true,
b77d7a56 863 'rangeSelectorAlpha': true,
8887663f
DV
864 'showLabelsOnHighlight': true,
865 'showRoller': true,
866 'strokeWidth': true,
867 'underlayCallback': true,
868 'unhighlightCallback': true,
869 'zoomCallback': true
870};
871
b1a3b195 872/**
9ca829f2
DV
873 * This function will scan the option list and determine if they
874 * require us to recalculate the pixel positions of each point.
8887663f 875 * TODO: move this into dygraph-options.js
f11283de 876 * @param {!Array.<string>} labels a list of options to check.
222d67c9 877 * @param {!Object} attrs
f11283de
DV
878 * @return {boolean} true if the graph needs new points else false.
879 * @private
9ca829f2 880 */
6ecc0739 881export function isPixelChangingOptionList(labels, attrs) {
9ca829f2
DV
882 // Assume that we do not require new points.
883 // This will change to true if we actually do need new points.
9ca829f2
DV
884
885 // Create a dictionary of series names for faster lookup.
886 // If there are no labels, then the dictionary stays empty.
887 var seriesNamesDictionary = { };
888 if (labels) {
889 for (var i = 1; i < labels.length; i++) {
890 seriesNamesDictionary[labels[i]] = true;
891 }
892 }
893
8887663f
DV
894 // Scan through a flat (i.e. non-nested) object of options.
895 // Returns true/false depending on whether new points are needed.
896 var scanFlatOptions = function(options) {
897 for (var property in options) {
898 if (options.hasOwnProperty(property) &&
899 !pixelSafeOptions[property]) {
900 return true;
901 }
902 }
903 return false;
904 };
905
9ca829f2 906 // Iterate through the list of updated options.
5061b42f 907 for (var property in attrs) {
8887663f
DV
908 if (!attrs.hasOwnProperty(property)) continue;
909
910 // Find out of this field is actually a series specific options list.
911 if (property == 'highlightSeriesOpts' ||
912 (seriesNamesDictionary[property] && !attrs.series)) {
913 // This property value is a list of options for this series.
914 if (scanFlatOptions(attrs[property])) return true;
915 } else if (property == 'series' || property == 'axes') {
916 // This is twice-nested options list.
917 var perSeries = attrs[property];
918 for (var series in perSeries) {
919 if (perSeries.hasOwnProperty(series) &&
920 scanFlatOptions(perSeries[series])) {
921 return true;
9ca829f2 922 }
ccd9d7c2 923 }
8887663f
DV
924 } else {
925 // If this was not a series specific option list, check if it's a pixel
926 // changing property.
927 if (!pixelSafeOptions[property]) return true;
9ca829f2
DV
928 }
929 }
930
8887663f 931 return false;
9ca829f2 932};
78e58af4 933
6ecc0739 934export var Circles = {
78e58af4
RK
935 DEFAULT : function(g, name, ctx, canvasx, canvasy, color, radius) {
936 ctx.beginPath();
937 ctx.fillStyle = color;
938 ctx.arc(canvasx, canvasy, radius, 0, 2 * Math.PI, false);
939 ctx.fill();
78e58af4 940 }
b7a1dc22 941 // For more shapes, include extras/shapes.js
78e58af4 942};
2bad4d92
DV
943
944/**
df268bcc 945 * Determine whether |data| is delimited by CR, CRLF, LF, LFCR.
e5763589 946 * @param {string} data
f11283de 947 * @return {?string} the delimiter that was detected (or null on failure).
e5763589 948 */
6ecc0739 949export function detectLineDelimiter(data) {
e5763589 950 for (var i = 0; i < data.length; i++) {
df268bcc
JH
951 var code = data.charAt(i);
952 if (code === '\r') {
953 // Might actually be "\r\n".
954 if (((i + 1) < data.length) && (data.charAt(i + 1) === '\n')) {
955 return '\r\n';
956 }
957 return code;
958 }
959 if (code === '\n') {
e5763589 960 // Might actually be "\n\r".
df268bcc
JH
961 if (((i + 1) < data.length) && (data.charAt(i + 1) === '\r')) {
962 return '\n\r';
963 }
e5763589
DV
964 return code;
965 }
966 }
967
968 return null;
969};
def24194
DV
970
971/**
bcb545f4
LB
972 * Is one node contained by another?
973 * @param {Node} containee The contained node.
974 * @param {Node} container The container node.
def24194
DV
975 * @return {boolean} Whether containee is inside (or equal to) container.
976 * @private
977 */
6ecc0739 978export function isNodeContainedBy(containee, container) {
def24194
DV
979 if (container === null || containee === null) {
980 return false;
981 }
db775859
RK
982 var containeeNode = /** @type {Node} */ (containee);
983 while (containeeNode && containeeNode !== container) {
984 containeeNode = containeeNode.parentNode;
def24194 985 }
db775859 986 return (containeeNode === container);
def24194 987};
2fd143d3 988
2fd143d3
DV
989// This masks some numeric issues in older versions of Firefox,
990// where 1.0/Math.pow(10,2) != Math.pow(10,-2).
991/** @type {function(number,number):number} */
6ecc0739 992export function pow(base, exp) {
2fd143d3
DV
993 if (exp < 0) {
994 return 1.0 / Math.pow(base, -exp);
995 }
996 return Math.pow(base, exp);
997};
998
337a79bc
DV
999var RGBA_RE = /^rgba?\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})(?:,\s*([01](?:\.\d+)?))?\)$/;
1000
1001/**
2cfded32 1002 * Helper for toRGB_ which parses strings of the form:
337a79bc
DV
1003 * rgb(123, 45, 67)
1004 * rgba(123, 45, 67, 0.5)
1005 * @return parsed {r,g,b,a?} tuple or null.
1006 */
1007function parseRGBA(rgbStr) {
1008 var bits = RGBA_RE.exec(rgbStr);
1009 if (!bits) return null;
1010 var r = parseInt(bits[1], 10),
1011 g = parseInt(bits[2], 10),
1012 b = parseInt(bits[3], 10);
1013 if (bits[4]) {
1014 return {r: r, g: g, b: b, a: parseFloat(bits[4])};
1015 } else {
1016 return {r: r, g: g, b: b};
1017 }
1018}
1019
464b5f50
DV
1020/**
1021 * Converts any valid CSS color (hex, rgb(), named color) to an RGB tuple.
1022 *
b7a1dc22 1023 * @param {!string} colorStr Any valid CSS color string.
337a79bc 1024 * @return {{r:number,g:number,b:number,a:number?}} Parsed RGB tuple.
464b5f50
DV
1025 * @private
1026 */
6ecc0739 1027export function toRGB_(colorStr) {
337a79bc
DV
1028 // Strategy: First try to parse colorStr directly. This is fast & avoids DOM
1029 // manipulation. If that fails (e.g. for named colors like 'red'), then
1030 // create a hidden DOM element and parse its computed color.
1031 var rgb = parseRGBA(colorStr);
1032 if (rgb) return rgb;
1033
464b5f50 1034 var div = document.createElement('div');
b7a1dc22 1035 div.style.backgroundColor = colorStr;
464b5f50
DV
1036 div.style.visibility = 'hidden';
1037 document.body.appendChild(div);
9901b0c1 1038 var rgbStr = window.getComputedStyle(div, null).backgroundColor;
464b5f50 1039 document.body.removeChild(div);
337a79bc 1040 return parseRGBA(rgbStr);
464b5f50 1041};
55deb02f
DV
1042
1043/**
1044 * Checks whether the browser supports the &lt;canvas&gt; tag.
1045 * @param {HTMLCanvasElement=} opt_canvasElement Pass a canvas element as an
1046 * optimization if you have one.
1047 * @return {boolean} Whether the browser supports canvas.
1048 */
6ecc0739 1049export function isCanvasSupported(opt_canvasElement) {
55deb02f 1050 try {
9901b0c1 1051 var canvas = opt_canvasElement || document.createElement("canvas");
55deb02f 1052 canvas.getContext("2d");
9901b0c1
DV
1053 } catch (e) {
1054 return false;
55deb02f
DV
1055 }
1056 return true;
1057};
1058
1059/**
1060 * Parses the value as a floating point number. This is like the parseFloat()
1061 * built-in, but with a few differences:
1062 * - the empty string is parsed as null, rather than NaN.
1063 * - if the string cannot be parsed at all, an error is logged.
1064 * If the string can't be parsed, this method returns null.
1065 * @param {string} x The string to be parsed
1066 * @param {number=} opt_line_no The line number from which the string comes.
1067 * @param {string=} opt_line The text of the line from which the string comes.
1068 */
6ecc0739 1069export function parseFloat_(x, opt_line_no, opt_line) {
55deb02f
DV
1070 var val = parseFloat(x);
1071 if (!isNaN(val)) return val;
1072
1073 // Try to figure out what happeend.
1074 // If the value is the empty string, parse it as null.
1075 if (/^ *$/.test(x)) return null;
1076
1077 // If it was actually "NaN", return it as NaN.
1078 if (/^ *nan *$/i.test(x)) return NaN;
1079
1080 // Looks like a parsing error.
1081 var msg = "Unable to parse '" + x + "' as a number";
1082 if (opt_line !== undefined && opt_line_no !== undefined) {
1083 msg += " on line " + (1+(opt_line_no||0)) + " ('" + opt_line + "') of CSV.";
1084 }
8a68db7d 1085 console.error(msg);
55deb02f
DV
1086
1087 return null;
1088};
8887663f 1089
6ecc0739
DV
1090
1091// Label constants for the labelsKMB and labelsKMG2 options.
1092// (i.e. '100000' -> '100K')
1093var KMB_LABELS = [ 'K', 'M', 'B', 'T', 'Q' ];
1094var KMG2_BIG_LABELS = [ 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' ];
1095var KMG2_SMALL_LABELS = [ 'm', 'u', 'n', 'p', 'f', 'a', 'z', 'y' ];
1096
1097/**
1098 * @private
1099 * Return a string version of a number. This respects the digitsAfterDecimal
1100 * and maxNumberWidth options.
1101 * @param {number} x The number to be formatted
1102 * @param {Dygraph} opts An options view
1103 */
1104export function numberValueFormatter(x, opts) {
1105 var sigFigs = opts('sigFigs');
1106
1107 if (sigFigs !== null) {
1108 // User has opted for a fixed number of significant figures.
1109 return floatFormat(x, sigFigs);
1110 }
1111
1112 var digits = opts('digitsAfterDecimal');
1113 var maxNumberWidth = opts('maxNumberWidth');
1114
1115 var kmb = opts('labelsKMB');
1116 var kmg2 = opts('labelsKMG2');
1117
1118 var label;
1119
1120 // switch to scientific notation if we underflow or overflow fixed display.
1121 if (x !== 0.0 &&
1122 (Math.abs(x) >= Math.pow(10, maxNumberWidth) ||
1123 Math.abs(x) < Math.pow(10, -digits))) {
1124 label = x.toExponential(digits);
1125 } else {
1126 label = '' + round_(x, digits);
1127 }
1128
1129 if (kmb || kmg2) {
1130 var k;
1131 var k_labels = [];
1132 var m_labels = [];
1133 if (kmb) {
1134 k = 1000;
1135 k_labels = KMB_LABELS;
1136 }
1137 if (kmg2) {
1138 if (kmb) console.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
1139 k = 1024;
1140 k_labels = KMG2_BIG_LABELS;
1141 m_labels = KMG2_SMALL_LABELS;
1142 }
1143
1144 var absx = Math.abs(x);
1145 var n = pow(k, k_labels.length);
1146 for (var j = k_labels.length - 1; j >= 0; j--, n /= k) {
1147 if (absx >= n) {
1148 label = round_(x / n, digits) + k_labels[j];
1149 break;
1150 }
1151 }
1152 if (kmg2) {
1153 // TODO(danvk): clean up this logic. Why so different than kmb?
1154 var x_parts = String(x.toExponential()).split('e-');
1155 if (x_parts.length === 2 && x_parts[1] >= 3 && x_parts[1] <= 24) {
1156 if (x_parts[1] % 3 > 0) {
1157 label = round_(x_parts[0] /
1158 pow(10, (x_parts[1] % 3)),
1159 digits);
1160 } else {
1161 label = Number(x_parts[0]).toFixed(2);
1162 }
1163 label += m_labels[Math.floor(x_parts[1] / 3) - 1];
1164 }
1165 }
1166 }
1167
1168 return label;
1169};
1170
1171/**
1172 * variant for use as an axisLabelFormatter.
1173 * @private
1174 */
1175export function numberAxisLabelFormatter(x, granularity, opts) {
1176 return numberValueFormatter.call(this, x, opts);
1177};
1178
1179/**
1180 * @type {!Array.<string>}
1181 * @private
1182 * @constant
1183 */
1184var SHORT_MONTH_NAMES_ = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
1185
1186
1187/**
1188 * Convert a JS date to a string appropriate to display on an axis that
1189 * is displaying values at the stated granularity. This respects the
1190 * labelsUTC option.
1191 * @param {Date} date The date to format
1192 * @param {number} granularity One of the Dygraph granularity constants
1193 * @param {Dygraph} opts An options view
1194 * @return {string} The date formatted as local time
1195 * @private
1196 */
1197export function dateAxisLabelFormatter(date, granularity, opts) {
1198 var utc = opts('labelsUTC');
1199 var accessors = utc ? DateAccessorsUTC : DateAccessorsLocal;
1200
1201 var year = accessors.getFullYear(date),
1202 month = accessors.getMonth(date),
1203 day = accessors.getDate(date),
1204 hours = accessors.getHours(date),
1205 mins = accessors.getMinutes(date),
1206 secs = accessors.getSeconds(date),
2d0fdf6e 1207 millis = accessors.getMilliseconds(date);
6ecc0739
DV
1208
1209 if (granularity >= DygraphTickers.Granularity.DECADAL) {
1210 return '' + year;
1211 } else if (granularity >= DygraphTickers.Granularity.MONTHLY) {
1212 return SHORT_MONTH_NAMES_[month] + '&#160;' + year;
1213 } else {
1214 var frac = hours * 3600 + mins * 60 + secs + 1e-3 * millis;
1215 if (frac === 0 || granularity >= DygraphTickers.Granularity.DAILY) {
1216 // e.g. '21 Jan' (%d%b)
1217 return zeropad(day) + '&#160;' + SHORT_MONTH_NAMES_[month];
1218 } else {
2d0fdf6e 1219 return hmsString_(hours, mins, secs, millis);
6ecc0739
DV
1220 }
1221 }
1222};
1223// alias in case anyone is referencing the old method.
1224// Dygraph.dateAxisFormatter = Dygraph.dateAxisLabelFormatter;
1225
1226/**
1227 * Return a string version of a JS date for a value label. This respects the
1228 * labelsUTC option.
1229 * @param {Date} date The date to be formatted
1230 * @param {Dygraph} opts An options view
1231 * @private
1232 */
1233export function dateValueFormatter(d, opts) {
1234 return dateString_(d, opts('labelsUTC'));
1235};