我有一个图表,我用tickValues()添加自定义刻度:
xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.tickValues(createTickValuesArray(arr.length))
.tickFormat(formatAxis);
但出于某种原因,图表在将图表从http://puu.sh/8wD8e.png更改为以下后,仅显示一定数量的刻度线 http://puu.sh/8wCZ6.png
我不明白为什么它不会为所有轴添加刻度。任何帮助表示赞赏。