2 * @fileoverview Utility functions for Dygraphs.
4 * @author konigsberg@google.com (Robert Konigsberg)
9 * Get the y-labels for a given axis.
11 * You can specify a parent if more than one graph is in the document.
13 Util
.getYLabels
= function(axis_num
, parent
) {
14 axis_num
= axis_num
|| "";
15 parent
= parent
|| document
;
16 var y_labels
= parent
.getElementsByClassName("dygraph-axis-label-y" + axis_num
);
18 for (var i
= 0; i
< y_labels
.length
; i
++) {
19 ary
.push(y_labels
[i
].innerHTML
.replace(/ | /g, ' '));
25 * Get the x-labels for a given axis.
27 * You can specify a parent if more than one graph is in the document.
29 Util
.getXLabels
= function(parent
) {
30 parent
= parent
|| document
;
31 var x_labels
= parent
.getElementsByClassName("dygraph-axis-label-x");
33 for (var i
= 0; i
< x_labels
.length
; i
++) {
34 ary
.push(x_labels
[i
].innerHTML
.replace(/ | /g, ' '));
40 * Returns all text in tags w/ a given css class, sorted.
41 * You can specify a parent if more than one graph is on the document.
43 Util
.getClassTexts
= function(css_class
, parent
) {
44 parent
= parent
|| document
;
46 var els
= parent
.getElementsByClassName(css_class
);
47 for (var i
= 0; i
< els
.length
; i
++) {
48 texts
[i
] = els
[i
].textContent
;
54 // Convert to a normal space
55 Util
.nbspToSpace
= function(str
) {
56 var re
= new RegExp(String
.fromCharCode(160), 'g');
57 return str
.replace(re
, ' ');
60 Util
.getLegend
= function(parent
) {
61 parent
= parent
|| document
;
62 var legend
= parent
.getElementsByClassName("dygraph-legend")[0];
63 return Util
.nbspToSpace(legend
.textContent
);
67 * Assert that all elements have a certain style property.
69 Util
.assertStyleOfChildren
= function(selector
, property
, expectedValue
) {
70 assert
.isTrue(selector
.length
> 0);
71 for (var idx
= 0; idx
< selector
.length
; idx
++) {
72 var child
= selector
[idx
];
73 assert
.equal(expectedValue
, window
.getComputedStyle(child
)[property
]);
79 * Takes in an array of strings and returns an array of floats.
81 Util
.makeNumbers
= function(ary
) {
83 for (var i
= 0; i
< ary
.length
; i
++) {
84 ret
.push(parseFloat(ary
[i
]));
91 * Sample a pixel from the canvas.
92 * Returns an [r, g, b, a] tuple where each values is in [0, 255].
94 Util
.samplePixel
= function(canvas
, x
, y
) {
95 var ctx
= canvas
.getContext("2d"); // bypasses Proxy if applied.
97 // TODO(danvk): Any performance issues with this?
98 var imageData
= ctx
.getImageData(0, 0, canvas
.width
, canvas
.height
);
100 var scale
= Dygraph
.getContextPixelRatio(ctx
);
102 var i
= 4 * (x
* scale
+ imageData
.width
* y
* scale
);
103 var d
= imageData
.data
;
104 return [d
[i
], d
[i
+1], d
[i
+2], d
[i
+3]];
108 * Overrides the browser's built-in XMLHttpRequest with a mock.
111 * var mockXhr = Util.overrideXMLHttpRequest(your_data);
112 * ... call code that does an XHR ...
113 * mockXhr.respond(); // restores default behavior.
114 * ... do your assertions ...
116 Util
.overrideXMLHttpRequest
= function(data
) {
117 var originalXMLHttpRequest
= XMLHttpRequest
;
120 var FakeXMLHttpRequest
= function () {
123 FakeXMLHttpRequest
.prototype.open
= function () {};
124 FakeXMLHttpRequest
.prototype.send
= function () {
127 this.responseText
= data
;
129 FakeXMLHttpRequest
.restore
= function() {
130 window
.XMLHttpRequest
= originalXMLHttpRequest
;
132 FakeXMLHttpRequest
.respond
= function() {
133 for (var i
= 0; i
< requests
.length
; i
++) {
134 requests
[i
].onreadystatechange();
136 FakeXMLHttpRequest
.restore();
138 window
.XMLHttpRequest
= FakeXMLHttpRequest
;
139 return FakeXMLHttpRequest
;
143 * Format a date as 2000/01/23
144 * @param {number} dateMillis Millis since epoch.
145 * @return {string} The date formatted as YYYY-MM-DD.
147 Util
.formatDate
= function(dateMillis
) {
148 return Dygraph
.dateString_(dateMillis
).slice(0, 10); // 10 == "YYYY/MM
/DD
".length
152 * Capture console.{log,warn,error} statements into obj.
153 * obj will look like {log:[], warn:[], error:[]}
154 * This returns a function which will restore the original console.
156 Util.captureConsole = function(obj) {
160 var orig = [console.log, console.warn, console.error];
161 console.log = function(text) { obj.log.push(text); };
162 console.warn = function(text) { obj.warn.push(text); };
163 console.error = function(text) { obj.error.push(text); };
166 console.log = orig[0];
167 console.warn = orig[1];
168 console.error = orig[2];