I have this chart
series: [
{
name: 'distance',
type: 'column',
data: [4.0, 0.0, 0.0, 5.0, 1.0, 0.0, 9.0],
borderRadius: 2
}, {
name: 'weight',
color: '#89A54E',
type: 'spline',
data: [165.0, 160.9, 159.5, 155.5, 162.2, 179.5, 125.2],
tooltip: {
valueSuffix: '--'
}
}
]
I would like to display two yAxis labels, one on right side and one on left side. It seems to just be using one.
I think this is due to the custom label formatting, but not positive. I don't want the two sets of data to use the same range. Anyone have an idea on why it would only be showing the one axis?