javascript - Highchart y axis min interval -
javascript - Highchart y axis min interval -
i show positive, negative spline chart different intervals
let positive 0 50 , interval has increment 5 negative 0 1000 interval has increment 100
is there way can in highcharts
here series im trying display
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 }]
here url jsfiddle
thanks
you can utilize tickpostions or tickpositioner
http://api.highcharts.com/highcharts#yaxis.tickpositions http://api.highcharts.com/highcharts#yaxis.tickpositioner
javascript highcharts intervals
Comments
Post a Comment