0
我製作了基於時間軸x軸的條形圖,它和tickValues()一起工作。d3 - 軸ticks不像tickValues那樣工作
xAxis.tickFormat(customTimeFormat)
.tickValues(xScale.domain()
.filter(function(d, i) {
// return true or false by some process
});
它的效果和我預期的一樣,但是當我用蜱做軸時,它不起作用。
xAxis.tickFormat(customTimeFormat).ticks(4);
我應該如何設置座標軸中的刻度?