0
私は、時間軸上にx軸を持ち、tickValues()を使って棒グラフを作成しました。d3軸目盛りがtickValuesと違って動作しない
xAxis.tickFormat(customTimeFormat)
.tickValues(xScale.domain()
.filter(function(d, i) {
// return true or false by some process
});
私は期待通りに機能しますが、ティックを軸にしても機能しませんでした。
xAxis.tickFormat(customTimeFormat).ticks(4);
ティックを軸に設定するにはどうすればよいですか?