Pass numerical value to format functions

This commit is contained in:
Henry 2016-08-01 20:16:46 -07:00
parent 121ab413ff
commit 4cd579d274

View File

@ -65,7 +65,7 @@ define(
//Define a custom format function
xAxis.tickFormat(function (date) {
return format.format(date, {min: b.start, max: b.end});
return format.format(date.getTime(), {min: b.start, max: b.end});
});
axisElement.call(xAxis);
}