Commit 0665e60b authored by Masayuki Tanaka's avatar Masayuki Tanaka

Fix bug when arc with timeseries data

parent f0164c7e
...@@ -655,7 +655,9 @@ ...@@ -655,7 +655,9 @@
if (typeof __axis_x_tick_format === 'function') { if (typeof __axis_x_tick_format === 'function') {
format = __axis_x_tick_format; format = __axis_x_tick_format;
} else if (isTimeSeries) { } 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; return format;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment