我正在使用 nvd3,但我认为这是关于时间尺度和格式的一般 d3.js 问题。我创建了一个简单的例子来说明这个问题(见下面的代码):
如果我省略了 xAxis 的 .tickFormat,它可以在没有日期格式的情况下正常工作。通过下面的示例,我得到了错误:
未捕获的类型错误:对象 1326000000000 没有方法“getMonth”
nv.addGraph(function() {
var chart = nv.models.lineChart();
chart.xAxis
.axisLabel('Date')
.rotateLabels(-45)
.tickFormat(d3.time.format('%b %d')) ;
chart.yAxis
.axisLabel('Activity')
.tickFormat(d3.format('d'));
d3.select('#chart svg')
.datum(fakeActivityByDate())
.transition().duration(500)
.call(chart);
nv.utils.windowResize(function() { d3.select('#chart svg').call(chart) });
return chart;
});
function days(num) {
return num*60*60*1000*24
}
/**************************************
* Simple test data generator
*/
function fakeActivityByDate() {
var lineData = [];
var y = 0;
var start_date = new Date() - days(365); // One year ago
for (var i = 0; i < 100; i++) {
lineData.push({x: new Date(start_date + days(i)), y: y});
y = y + Math.floor((Math.random()*10) - 3);
}
return [
{
values: lineData,
key: 'Activity',
color: '#ff7f0e'
}
];
}
该示例(现已修复)位于带有 date axis 的 nvd3 中。