51

我正在使用 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 中

4

2 回答 2

63

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

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

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

于 2012-12-27T20:11:26.497 回答
34

添加到 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
于 2014-03-15T02:08:49.033 回答