NVD3图表部分缺少网格线

时间:2014-07-02 05:49:45

标签: javascript d3.js nvd3.js

my chart here中,如果您注意到,它会丢失前4个和最后4个日期的网格线。

我尝试过:

.ticks(data[0].length)

但它没有帮助。

我错过了什么?

jsFiddle

1 个答案:

答案 0 :(得分:3)

添加.showMaxMin(false)可以解决问题。

      chart.xAxis
       .showMaxMin(false)
       .axisLabel("My X-Axis")
       .tickFormat(function(d) { return d3.time.format('%x')(new Date(d)) });

工作示例为here