Browse Source

Fix bug when arc with timeseries data

pull/183/head
Masayuki Tanaka 11 years ago
parent
commit
0665e60beb
  1. 4
      c3.js
  2. 2
      c3.min.js

4
c3.js

@ -655,7 +655,9 @@
if (typeof __axis_x_tick_format === 'function') {
format = __axis_x_tick_format;
} else if (isTimeSeries) {
format = function (date) { return xTimeFormat(__axis_x_tick_format)(date); };
format = function (date) {
return date ? xTimeFormat(__axis_x_tick_format)(date) : "";
};
}
}
return format;

2
c3.min.js vendored

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save