source: Dev/branches/rest-dojo-ui/Demo/d3/src/time/months.js @ 312

Last change on this file since 312 was 312, checked in by jkraaijeveld, 13 years ago
File size: 320 bytes
Line 
1d3.time.months = d3_time_range(d3.time.month, function(date) {
2  date.setMonth(date.getMonth() + 1);
3}, function(date) {
4  return date.getMonth();
5});
6
7d3.time.months.utc = d3_time_range(d3.time.month.utc, function(date) {
8  date.setUTCMonth(date.getUTCMonth() + 1);
9}, function(date) {
10  return date.getUTCMonth();
11});
Note: See TracBrowser for help on using the repository browser.