Add JSHint and make dygraphs pass its checks.
[dygraphs.git] / dygraph-tickers.js
CommitLineData
88e95c46
DV
1/**
2 * @license
3 * Copyright 2011 Dan Vanderkam (danvdk@gmail.com)
4 * MIT-licensed (http://opensource.org/licenses/MIT)
5 */
48e614ac
DV
6
7/**
8 * @fileoverview Description of this file.
9 * @author danvk@google.com (Dan Vanderkam)
10 *
11 * A ticker is a function with the following interface:
12 *
13 * function(a, b, pixels, options_view, dygraph, forced_values);
14 * -> [ { v: tick1_v, label: tick1_label[, label_v: label_v1] },
15 * { v: tick2_v, label: tick2_label[, label_v: label_v2] },
16 * ...
17 * ]
18 *
19 * The returned value is called a "tick list".
20 *
21 * Arguments
22 * ---------
23 *
24 * [a, b] is the range of the axis for which ticks are being generated. For a
25 * numeric axis, these will simply be numbers. For a date axis, these will be
26 * millis since epoch (convertable to Date objects using "new Date(a)" and "new
27 * Date(b)").
28 *
29 * opts provides access to chart- and axis-specific options. It can be used to
30 * access number/date formatting code/options, check for a log scale, etc.
31 *
32 * pixels is the length of the axis in pixels. opts('pixelsPerLabel') is the
33 * minimum amount of space to be allotted to each label. For instance, if
34 * pixels=400 and opts('pixelsPerLabel')=40 then the ticker should return
35 * between zero and ten (400/40) ticks.
36 *
37 * dygraph is the Dygraph object for which an axis is being constructed.
38 *
39 * forced_values is used for secondary y-axes. The tick positions are typically
40 * set by the primary y-axis, so the secondary y-axis has no choice in where to
41 * put these. It simply has to generate labels for these data values.
42 *
43 * Tick lists
44 * ----------
45 * Typically a tick will have both a grid/tick line and a label at one end of
46 * that line (at the bottom for an x-axis, at left or right for the y-axis).
47 *
48 * A tick may be missing one of these two components:
49 * - If "label_v" is specified instead of "v", then there will be no tick or
50 * gridline, just a label.
51 * - Similarly, if "label" is not specified, then there will be a gridline
52 * without a label.
53 *
54 * This flexibility is useful in a few situations:
55 * - For log scales, some of the tick lines may be too close to all have labels.
56 * - For date scales where years are being displayed, it is desirable to display
57 * tick marks at the beginnings of years but labels (e.g. "2006") in the
58 * middle of the years.
59 */
60
758a629f
DV
61/*jshint globalstrict: true */
62/*global Dygraph:false */
c0f54d4f
DV
63"use strict";
64
48e614ac
DV
65Dygraph.numericTicks = function(a, b, pixels, opts, dygraph, vals) {
66 var pixels_per_tick = opts('pixelsPerLabel');
67 var ticks = [];
758a629f 68 var i, j, tickV, nTicks;
48e614ac 69 if (vals) {
758a629f 70 for (i = 0; i < vals.length; i++) {
48e614ac
DV
71 ticks.push({v: vals[i]});
72 }
73 } else {
74 // TODO(danvk): factor this log-scale block out into a separate function.
75 if (opts("logscale")) {
758a629f 76 nTicks = Math.floor(pixels / pixels_per_tick);
48e614ac
DV
77 var minIdx = Dygraph.binarySearch(a, Dygraph.PREFERRED_LOG_TICK_VALUES, 1);
78 var maxIdx = Dygraph.binarySearch(b, Dygraph.PREFERRED_LOG_TICK_VALUES, -1);
79 if (minIdx == -1) {
80 minIdx = 0;
81 }
82 if (maxIdx == -1) {
83 maxIdx = Dygraph.PREFERRED_LOG_TICK_VALUES.length - 1;
84 }
85 // Count the number of tick values would appear, if we can get at least
86 // nTicks / 4 accept them.
87 var lastDisplayed = null;
88 if (maxIdx - minIdx >= nTicks / 4) {
89 for (var idx = maxIdx; idx >= minIdx; idx--) {
90 var tickValue = Dygraph.PREFERRED_LOG_TICK_VALUES[idx];
91 var pixel_coord = Math.log(tickValue / a) / Math.log(b / a) * pixels;
92 var tick = { v: tickValue };
758a629f 93 if (lastDisplayed === null) {
48e614ac
DV
94 lastDisplayed = {
95 tickValue : tickValue,
96 pixel_coord : pixel_coord
97 };
98 } else {
99 if (Math.abs(pixel_coord - lastDisplayed.pixel_coord) >= pixels_per_tick) {
100 lastDisplayed = {
101 tickValue : tickValue,
102 pixel_coord : pixel_coord
103 };
104 } else {
105 tick.label = "";
106 }
107 }
108 ticks.push(tick);
109 }
110 // Since we went in backwards order.
111 ticks.reverse();
112 }
113 }
114
115 // ticks.length won't be 0 if the log scale function finds values to insert.
758a629f 116 if (ticks.length === 0) {
48e614ac
DV
117 // Basic idea:
118 // Try labels every 1, 2, 5, 10, 20, 50, 100, etc.
119 // Calculate the resulting tick spacing (i.e. this.height_ / nTicks).
120 // The first spacing greater than pixelsPerYLabel is what we use.
121 // TODO(danvk): version that works on a log scale.
122 var kmg2 = opts("labelsKMG2");
758a629f 123 var mults;
48e614ac 124 if (kmg2) {
758a629f 125 mults = [1, 2, 4, 8];
48e614ac 126 } else {
758a629f 127 mults = [1, 2, 5];
48e614ac 128 }
758a629f
DV
129 var scale, low_val, high_val;
130 for (i = -10; i < 50; i++) {
131 var base_scale;
48e614ac 132 if (kmg2) {
758a629f 133 base_scale = Math.pow(16, i);
48e614ac 134 } else {
758a629f 135 base_scale = Math.pow(10, i);
48e614ac 136 }
758a629f
DV
137 var spacing = 0;
138 for (j = 0; j < mults.length; j++) {
48e614ac
DV
139 scale = base_scale * mults[j];
140 low_val = Math.floor(a / scale) * scale;
141 high_val = Math.ceil(b / scale) * scale;
142 nTicks = Math.abs(high_val - low_val) / scale;
758a629f 143 spacing = pixels / nTicks;
48e614ac
DV
144 // wish I could break out of both loops at once...
145 if (spacing > pixels_per_tick) break;
146 }
147 if (spacing > pixels_per_tick) break;
148 }
149
150 // Construct the set of ticks.
151 // Allow reverse y-axis if it's explicitly requested.
152 if (low_val > high_val) scale *= -1;
758a629f
DV
153 for (i = 0; i < nTicks; i++) {
154 tickV = low_val + i * scale;
48e614ac
DV
155 ticks.push( {v: tickV} );
156 }
157 }
158 }
159
160 // Add formatted labels to the ticks.
161 var k;
162 var k_labels = [];
163 if (opts("labelsKMB")) {
164 k = 1000;
165 k_labels = [ "K", "M", "B", "T" ];
166 }
167 if (opts("labelsKMG2")) {
758a629f 168 if (k) Dygraph.warn("Setting both labelsKMB and labelsKMG2. Pick one!");
48e614ac
DV
169 k = 1024;
170 k_labels = [ "k", "M", "G", "T" ];
171 }
172
173 var formatter = opts('axisLabelFormatter');
174
175 // Add labels to the ticks.
758a629f 176 for (i = 0; i < ticks.length; i++) {
48e614ac 177 if (ticks[i].label !== undefined) continue; // Use current label.
758a629f 178 tickV = ticks[i].v;
48e614ac
DV
179 var absTickV = Math.abs(tickV);
180 // TODO(danvk): set granularity to something appropriate here.
181 var label = formatter(tickV, 0, opts, dygraph);
182 if (k_labels.length > 0) {
183 // TODO(danvk): should this be integrated into the axisLabelFormatter?
184 // Round up to an appropriate unit.
185 var n = k*k*k*k;
758a629f 186 for (j = 3; j >= 0; j--, n /= k) {
48e614ac
DV
187 if (absTickV >= n) {
188 label = Dygraph.round_(tickV / n, opts('digitsAfterDecimal')) +
189 k_labels[j];
190 break;
191 }
192 }
193 }
194 ticks[i].label = label;
195 }
196
197 return ticks;
198};
199
200
201Dygraph.dateTicker = function(a, b, pixels, opts, dygraph, vals) {
202 var pixels_per_tick = opts('pixelsPerLabel');
203 var chosen = -1;
204 for (var i = 0; i < Dygraph.NUM_GRANULARITIES; i++) {
205 var num_ticks = Dygraph.numDateTicks(a, b, i);
206 if (pixels / num_ticks >= pixels_per_tick) {
207 chosen = i;
208 break;
209 }
210 }
211
212 if (chosen >= 0) {
213 return Dygraph.getDateAxis(a, b, chosen, opts, dygraph);
214 } else {
215 // this can happen if self.width_ is zero.
216 return [];
217 }
218};
219
220// Time granularity enumeration
221Dygraph.SECONDLY = 0;
222Dygraph.TWO_SECONDLY = 1;
223Dygraph.FIVE_SECONDLY = 2;
224Dygraph.TEN_SECONDLY = 3;
225Dygraph.THIRTY_SECONDLY = 4;
226Dygraph.MINUTELY = 5;
227Dygraph.TWO_MINUTELY = 6;
228Dygraph.FIVE_MINUTELY = 7;
229Dygraph.TEN_MINUTELY = 8;
230Dygraph.THIRTY_MINUTELY = 9;
231Dygraph.HOURLY = 10;
232Dygraph.TWO_HOURLY = 11;
233Dygraph.SIX_HOURLY = 12;
234Dygraph.DAILY = 13;
235Dygraph.WEEKLY = 14;
236Dygraph.MONTHLY = 15;
237Dygraph.QUARTERLY = 16;
238Dygraph.BIANNUAL = 17;
239Dygraph.ANNUAL = 18;
240Dygraph.DECADAL = 19;
241Dygraph.CENTENNIAL = 20;
242Dygraph.NUM_GRANULARITIES = 21;
243
244Dygraph.SHORT_SPACINGS = [];
245Dygraph.SHORT_SPACINGS[Dygraph.SECONDLY] = 1000 * 1;
246Dygraph.SHORT_SPACINGS[Dygraph.TWO_SECONDLY] = 1000 * 2;
247Dygraph.SHORT_SPACINGS[Dygraph.FIVE_SECONDLY] = 1000 * 5;
248Dygraph.SHORT_SPACINGS[Dygraph.TEN_SECONDLY] = 1000 * 10;
249Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_SECONDLY] = 1000 * 30;
250Dygraph.SHORT_SPACINGS[Dygraph.MINUTELY] = 1000 * 60;
251Dygraph.SHORT_SPACINGS[Dygraph.TWO_MINUTELY] = 1000 * 60 * 2;
252Dygraph.SHORT_SPACINGS[Dygraph.FIVE_MINUTELY] = 1000 * 60 * 5;
253Dygraph.SHORT_SPACINGS[Dygraph.TEN_MINUTELY] = 1000 * 60 * 10;
254Dygraph.SHORT_SPACINGS[Dygraph.THIRTY_MINUTELY] = 1000 * 60 * 30;
255Dygraph.SHORT_SPACINGS[Dygraph.HOURLY] = 1000 * 3600;
256Dygraph.SHORT_SPACINGS[Dygraph.TWO_HOURLY] = 1000 * 3600 * 2;
257Dygraph.SHORT_SPACINGS[Dygraph.SIX_HOURLY] = 1000 * 3600 * 6;
258Dygraph.SHORT_SPACINGS[Dygraph.DAILY] = 1000 * 86400;
259Dygraph.SHORT_SPACINGS[Dygraph.WEEKLY] = 1000 * 604800;
260
261/**
262 * @private
263 * This is a list of human-friendly values at which to show tick marks on a log
264 * scale. It is k * 10^n, where k=1..9 and n=-39..+39, so:
265 * ..., 1, 2, 3, 4, 5, ..., 9, 10, 20, 30, ..., 90, 100, 200, 300, ...
266 * NOTE: this assumes that Dygraph.LOG_SCALE = 10.
267 */
268Dygraph.PREFERRED_LOG_TICK_VALUES = function() {
269 var vals = [];
270 for (var power = -39; power <= 39; power++) {
271 var range = Math.pow(10, power);
272 for (var mult = 1; mult <= 9; mult++) {
273 var val = range * mult;
274 vals.push(val);
275 }
276 }
277 return vals;
278}();
279
280Dygraph.numDateTicks = function(start_time, end_time, granularity) {
281 if (granularity < Dygraph.MONTHLY) {
282 // Generate one tick mark for every fixed interval of time.
283 var spacing = Dygraph.SHORT_SPACINGS[granularity];
284 return Math.floor(0.5 + 1.0 * (end_time - start_time) / spacing);
285 } else {
286 var year_mod = 1; // e.g. to only print one point every 10 years.
287 var num_months = 12;
288 if (granularity == Dygraph.QUARTERLY) num_months = 3;
289 if (granularity == Dygraph.BIANNUAL) num_months = 2;
290 if (granularity == Dygraph.ANNUAL) num_months = 1;
291 if (granularity == Dygraph.DECADAL) { num_months = 1; year_mod = 10; }
292 if (granularity == Dygraph.CENTENNIAL) { num_months = 1; year_mod = 100; }
293
294 var msInYear = 365.2524 * 24 * 3600 * 1000;
295 var num_years = 1.0 * (end_time - start_time) / msInYear;
296 return Math.floor(0.5 + 1.0 * num_years * num_months / year_mod);
297 }
298};
299
300Dygraph.getDateAxis = function(start_time, end_time, granularity, opts, dg) {
301 var formatter = opts("axisLabelFormatter");
302 var ticks = [];
758a629f
DV
303 var t;
304
48e614ac
DV
305 if (granularity < Dygraph.MONTHLY) {
306 // Generate one tick mark for every fixed interval of time.
307 var spacing = Dygraph.SHORT_SPACINGS[granularity];
48e614ac
DV
308
309 // Find a time less than start_time which occurs on a "nice" time boundary
310 // for this granularity.
311 var g = spacing / 1000;
312 var d = new Date(start_time);
758a629f 313 var x;
48e614ac 314 if (g <= 60) { // seconds
758a629f 315 x = d.getSeconds(); d.setSeconds(x - x % g);
48e614ac
DV
316 } else {
317 d.setSeconds(0);
318 g /= 60;
319 if (g <= 60) { // minutes
758a629f 320 x = d.getMinutes(); d.setMinutes(x - x % g);
48e614ac
DV
321 } else {
322 d.setMinutes(0);
323 g /= 60;
324
325 if (g <= 24) { // days
758a629f 326 x = d.getHours(); d.setHours(x - x % g);
48e614ac
DV
327 } else {
328 d.setHours(0);
329 g /= 24;
330
331 if (g == 7) { // one week
332 d.setDate(d.getDate() - d.getDay());
333 }
334 }
335 }
336 }
337 start_time = d.getTime();
338
758a629f 339 for (t = start_time; t <= end_time; t += spacing) {
48e614ac
DV
340 ticks.push({ v:t,
341 label: formatter(new Date(t), granularity, opts, dg)
342 });
343 }
344 } else {
345 // Display a tick mark on the first of a set of months of each year.
346 // Years get a tick mark iff y % year_mod == 0. This is useful for
347 // displaying a tick mark once every 10 years, say, on long time scales.
348 var months;
349 var year_mod = 1; // e.g. to only print one point every 10 years.
350
351 if (granularity == Dygraph.MONTHLY) {
ccd9d7c2 352 months = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ];
48e614ac
DV
353 } else if (granularity == Dygraph.QUARTERLY) {
354 months = [ 0, 3, 6, 9 ];
355 } else if (granularity == Dygraph.BIANNUAL) {
356 months = [ 0, 6 ];
357 } else if (granularity == Dygraph.ANNUAL) {
358 months = [ 0 ];
359 } else if (granularity == Dygraph.DECADAL) {
360 months = [ 0 ];
361 year_mod = 10;
362 } else if (granularity == Dygraph.CENTENNIAL) {
363 months = [ 0 ];
364 year_mod = 100;
365 } else {
366 Dygraph.warn("Span of dates is too long");
367 }
368
369 var start_year = new Date(start_time).getFullYear();
370 var end_year = new Date(end_time).getFullYear();
371 var zeropad = Dygraph.zeropad;
372 for (var i = start_year; i <= end_year; i++) {
758a629f 373 if (i % year_mod !== 0) continue;
48e614ac
DV
374 for (var j = 0; j < months.length; j++) {
375 var date_str = i + "/" + zeropad(1 + months[j]) + "/01";
758a629f 376 t = Dygraph.dateStrToMillis(date_str);
48e614ac
DV
377 if (t < start_time || t > end_time) continue;
378 ticks.push({ v:t,
379 label: formatter(new Date(t), granularity, opts, dg)
380 });
381 }
382 }
383 }
384
385 return ticks;
386};
387
388// These are set here so that this file can be included after dygraph.js.
389Dygraph.DEFAULT_ATTRS.axes.x.ticker = Dygraph.dateTicker;
390Dygraph.DEFAULT_ATTRS.axes.y.ticker = Dygraph.numericTicks;
391Dygraph.DEFAULT_ATTRS.axes.y2.ticker = Dygraph.numericTicks;