标签: javascript d3.js nvd3.js
在my chart here中,如果您注意到,它会丢失前4个和最后4个日期的网格线。
我尝试过:
.ticks(data[0].length)
但它没有帮助。
我错过了什么?
jsFiddle
答案 0 :(得分:3)
添加.showMaxMin(false)可以解决问题。
chart.xAxis .showMaxMin(false) .axisLabel("My X-Axis") .tickFormat(function(d) { return d3.time.format('%x')(new Date(d)) });
工作示例为here