Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
c3jsチャートは自動的に「y軸」に年を取りますが、.5年ごとに間隔があります。そのタイプの間隔を削除するにはどうすればよいですか。ドキュメントや他の情報源から調べようとしましたが、無駄でした。
.5
これを行うエレガントな方法は見たことがありませんが、これが私が使用しているものです。
ではchart.axis.y.tick、表示する値を選択できます。
chart.axis.y.tick
y: { tick: { format: function (d) {if (d != "2" && d != "6" && d != "10" && d != "14" && d != "18" ) return d + "%"} } }
私はy軸から毎秒目盛りを取りました。