score:4

Accepted answer

Yes it is possible. You can control the axis labels by using the same min, max, and tickInterval for both axis. In the following example I use the following on both series:

min: 0,
max: 600,
tickInterval: 50,

score:0

Highcharts also has the functionality to link multiple axis together using the linkedTo attribute. All you have to specify in the properties of an axis is what axis it is linkedTo by specifying its index in the array of axes.

yAxis: [

                { // Primary
                    title: {
                        text: "Label for first Axis"
                    }
                },
                { // Dependent Axis
                    title:{
                        text: "Label for dependent Axis"
                    },
                    linkedTo: 0
                }
            ]

Related Query

More Query from same tag