如何在x轴上显示nvd3 / d3.js的日期?

时间:2012-12-27 17:45:52

标签: d3.js nvd3.js

我正在使用nvd3,但我认为这是关于时间尺度和格式的一般d3.js问题。我创建了一个简单的例子来说明问题(参见下面的代码):

如果我省略了针对xAxis的.tickFormat,它可以在没有日期格式的情况下正常工作。通过下面的示例,我得到错误:

  

未捕获的TypeError:对象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'
        }
    ];
 }

示例(现已修复)位于 nvd3 with date axis

2 个答案:

答案 0 :(得分:63)

尝试在x轴的刻度传递给格式化程序之前创建一个新的Date对象:

.tickFormat(function(d) { return d3.time.format('%b %d')(new Date(d)); })

请参阅d3.time.format的文档,了解如何自定义格式化字符串。

答案 1 :(得分:33)

添加到seliopou的答案,要正确地将日期与x轴对齐,请尝试:

chart.xAxis
      .tickFormat(function(d) {
          return d3.time.format('%d-%m-%y')(new Date(d))
      });

  chart.xScale(d3.time.scale()); //fixes misalignment of timescale with line graph