0

我想展示一个具有不同间隔的正负样条图

假设正 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的网址

谢谢

4

1 回答 1

0

您可以使用 tickPostions 或 tickPositioner

http://api.highcharts.com/highcharts#yAxis.tickPositions http://api.highcharts.com/highcharts#yAxis.tickPositioner

于 2013-02-08T11:37:45.570 回答