2 * @fileoverview Test cases for how axis labels are chosen and formatted,
3 * specializing on the deprecated xLabelFormatter, etc.
5 * @author dan@dygraphs.com (Dan Vanderkam)
7 var DeprecatedAxisLabelsTestCase
= TestCase("axis-labels-deprecated");
9 DeprecatedAxisLabelsTestCase
.prototype.setUp
= function() {
10 document
.body
.innerHTML
= "<div id='graph'></div>";
13 DeprecatedAxisLabelsTestCase
.prototype.tearDown
= function() {
16 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedDeprecatedXAxisTimeLabelFormatter
= function() {
21 var data
= [[5.0,0],[5.1,1],[5.2,2],[5.3,3],[5.4,4],[5.5,5],[5.6,6],[5.7,7],[5.8,8],[5.9,9]];
22 var graph
= document
.getElementById("graph");
23 var g
= new Dygraph(graph
, data
, opts
);
25 xAxisLabelFormatter
: function (totalMinutes
) {
26 var hours
= Math
.floor( totalMinutes
/ 60);
27 var minutes
= Math
.floor((totalMinutes
- (hours
* 60)));
28 var seconds
= Math
.round((totalMinutes
* 60) - (hours
* 3600) - (minutes
* 60));
30 if (hours
< 10) hours
= "0" + hours
;
31 if (minutes
< 10) minutes
= "0" + minutes
;
32 if (seconds
< 10) seconds
= "0" + seconds
;
34 return hours
+ ':' + minutes
+ ':' + seconds
;
38 assertEquals(["00:05:00","00:05:12","00:05:24","00:05:36","00:05:48"], Util
.getXLabels());
40 // The legend does not use the xAxisLabelFormatter:
42 assertEquals('5.1: Y1: 1', Util
.getLegend());
45 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedAxisLabelFormatter
= function () {
49 xAxisLabelFormatter
: function(x
, granularity
, opts
, dg
) {
50 assertEquals('number', typeof(x
));
51 assertEquals('number', typeof(granularity
));
52 assertEquals('function', typeof(opts
));
53 assertEquals('[Dygraph graph]', dg
.toString());
56 yAxisLabelFormatter
: function(y
, granularity
, opts
, dg
) {
57 assertEquals('number', typeof(y
));
58 assertEquals('number', typeof(granularity
));
59 assertEquals('function', typeof(opts
));
60 assertEquals('[Dygraph graph]', dg
.toString());
66 for (var i
= 0; i
< 10; i
++) {
67 data
.push([i
, 2 * i
]);
69 var graph
= document
.getElementById("graph");
70 var g
= new Dygraph(graph
, data
, opts
);
72 assertEquals(['x0','x2','x4','x6','x8'], Util
.getXLabels());
73 assertEquals(['y0','y2','y4','y6','y8','y10','y12','y14','y16','y18'], Util
.getYLabels());
76 assertEquals("2: y: 4", Util
.getLegend());
79 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedDateAxisLabelFormatter
= function () {
83 xAxisLabelFormatter
: function(x
, granularity
, opts
, dg
) {
84 assertTrue(Dygraph
.isDateLike(x
));
85 assertEquals('number', typeof(granularity
));
86 assertEquals('function', typeof(opts
));
87 assertEquals('[Dygraph graph]', dg
.toString());
88 return 'x' + Util
.formatDate(x
);
90 yAxisLabelFormatter
: function(y
, granularity
, opts
, dg
) {
91 assertEquals('number', typeof(y
));
92 assertEquals('number', typeof(granularity
));
93 assertEquals('function', typeof(opts
));
94 assertEquals('[Dygraph graph]', dg
.toString());
100 for (var i
= 1; i
< 10; i
++) {
101 data
.push([new Date("2011/01/0" + i
), 2 * i
]);
103 var graph
= document
.getElementById("graph");
104 var g
= new Dygraph(graph
, data
, opts
);
106 assertEquals(["x2011/01/01", "x2011/01/02", "x2011/01/03", "x2011/01/04", "x2011/01/05", "x2011/01/06", "x2011/01/07", "x2011/01/08"], Util
.getXLabels());
107 assertEquals(['y2','y4','y6','y8','y10','y12','y14','y16','y18'], Util
.getYLabels());
110 assertEquals("2011/01/01: y: 2", Util
.getLegend());
113 // This test verifies that when a valueFormatter is set (but not an
114 // axisLabelFormatter), then the valueFormatter is used to format the axis
116 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedValueFormatter
= function () {
120 xValueFormatter
: function(x
, opts
, series_name
, dg
) {
121 assertEquals('number', typeof(x
));
122 assertEquals('function', typeof(opts
));
123 assertEquals('string', typeof(series_name
));
124 assertEquals('[Dygraph graph]', dg
.toString());
127 yValueFormatter
: function(y
, opts
, series_name
, dg
) {
128 assertEquals('number', typeof(y
));
129 assertEquals('function', typeof(opts
));
130 assertEquals('string', typeof(series_name
));
131 assertEquals('[Dygraph graph]', dg
.toString());
137 for (var i
= 0; i
< 10; i
++) {
138 data
.push([i
, 2 * i
]);
140 var graph
= document
.getElementById("graph");
141 var g
= new Dygraph(graph
, data
, opts
);
143 // the valueFormatter options do not affect the ticks.
144 assertEquals(['0','2','4','6','8'], Util
.getXLabels());
145 assertEquals(['0','2','4','6','8','10','12','14','16','18'],
148 // they do affect the legend, however.
150 assertEquals("x2: y: y4", Util
.getLegend());
153 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedDateValueFormatter
= function () {
157 xValueFormatter
: function(x
, opts
, series_name
, dg
) {
158 assertEquals('number', typeof(x
));
159 assertEquals('function', typeof(opts
));
160 assertEquals('string', typeof(series_name
));
161 assertEquals('[Dygraph graph]', dg
.toString());
162 return 'x' + Util
.formatDate(x
);
164 yValueFormatter
: function(y
, opts
, series_name
, dg
) {
165 assertEquals('number', typeof(y
));
166 assertEquals('function', typeof(opts
));
167 assertEquals('string', typeof(series_name
));
168 assertEquals('[Dygraph graph]', dg
.toString());
175 for (var i
= 1; i
< 10; i
++) {
176 data
.push([new Date("2011/01/0" + i
), 2 * i
]);
178 var graph
= document
.getElementById("graph");
179 var g
= new Dygraph(graph
, data
, opts
);
181 // valueFormatters do not affect ticks.
182 assertEquals(['01Jan','02Jan','03Jan','04Jan','05Jan','06Jan','07Jan','08Jan'], Util
.getXLabels());
183 assertEquals(['2','4','6','8','10','12','14','16','18'], Util
.getYLabels());
185 // the valueFormatter options also affect the legend.
187 assertEquals('x2011/01/03: y: y6', Util
.getLegend());
190 // This test verifies that when both a valueFormatter and an axisLabelFormatter
191 // are specified, the axisLabelFormatter takes precedence.
192 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedAxisLabelFormatterPrecedence
= function () {
196 xValueFormatter
: function(x
) {
199 yValueFormatter
: function(y
) {
202 xAxisLabelFormatter
: function(x
, granularity
) {
205 yAxisLabelFormatter
: function(y
) {
211 for (var i
= 0; i
< 10; i
++) {
212 data
.push([i
, 2 * i
]);
214 var graph
= document
.getElementById("graph");
215 var g
= new Dygraph(graph
, data
, opts
);
217 assertEquals(['x0','x2','x4','x6','x8'], Util
.getXLabels());
218 assertEquals(['y0','y2','y4','y6','y8','y10','y12','y14','y16','y18'], Util
.getYLabels());
221 assertEquals("xvf9: y: yvf18", Util
.getLegend());
224 // This is the same as the previous test, except that options are added
226 DeprecatedAxisLabelsTestCase
.prototype.testDeprecatedAxisLabelFormatterIncremental
= function () {
233 for (var i
= 0; i
< 10; i
++) {
234 data
.push([i
, 2 * i
]);
236 var graph
= document
.getElementById("graph");
237 var g
= new Dygraph(graph
, data
, opts
);
239 xValueFormatter
: function(x
) {
244 yValueFormatter
: function(y
) {
249 xAxisLabelFormatter
: function(x
, granularity
) {
254 yAxisLabelFormatter
: function(y
) {
259 assertEquals(["x0","x2","x4","x6","x8"], Util
.getXLabels());
260 assertEquals(['y0','y2','y4','y6','y8','y10','y12','y14','y16','y18'], Util
.getYLabels());
263 assertEquals("xvf9: y: yvf18", Util
.getLegend());