rgraphチャートの 垂直プログレスバーを使用しています。
私がやろうとしているのは、10 wrt numticks の倍数でスケールを調整することです。
したがって、numticks が 6 の場合、スケールは 0,10,20,30...60 にする必要があります
これどうやってするの?他の代替手段はありますか?
コード
var vprogress = new RGraph.VProgress({
id: 'cvs',
min: 0,
max: 60,
value: 46,
options: {
colors: ['#5bc0de'],
tickmarksInner: true,
gutterRight:35,
numticks:6,
tickmarksColor:['black'],
arrows:true,
textSize: 12,
margin: 5,
}
}).grow();