間隔の異なる正負のスプライン チャートを表示したい
正の 0 から 50 までの場合、間隔は 5 ずつ増加する必要があります。負の 0 から 1000 までの場合、間隔は 100 ずつ増加する必要があります。
ハイチャートでこれを行う方法はありますか
ここに表示しようとしているシリーズがあります
series: [{
id: 'error1',
name: 'Errors One',
color:'red',
data: [5, 3, 4, 7, 2],
}, {
id: 'ErrorsOne',
color: 'red',
data: [-222, -234, -123, -189, -289],
showInLegend: false
}, {
id:'error2',
name: 'Errors Two',
color:'blue',
data: [3, 4, 4, 2, 5],
}, {
id:'ErrorsTwo',
color:'blue',
data: [-300, -245, -122, -245, -166],
showInLegend: false
}]
ありがとう