我想显示一个具有不同间隔的正负曲线图
让我们说 正0到50,间隔必须增加5 负0到1000,间隔必须增加100
我有什么方法可以在Highcharts中做到这一点
这是我试图展示的系列
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
}]
这是jsfiddle
的网址谢谢
答案 0 :(得分:0)
您可以使用tickPostions或tickPositioner
http://api.highcharts.com/highcharts#yAxis.tickPositions http://api.highcharts.com/highcharts#yAxis.tickPositioner