See this JSFiddle. How do I get the y-axis zero to align?
You can set min / max value for first yAxis and use linkedTo to second axis, but I'm not sure if you expect this effect:
http://jsfiddle.net/qkDXv/2/
yAxis: [{ // Primary yAxis
labels: {
format: '{value}°C',
style: {
color: '#89A54E'
}
},
title: {
text: 'Temperature',
style: {
color: '#89A54E'
}
},
min:-250,
max:50
//linkedTo:1
}, { // Secondary yAxis
title: {
text: 'Rainfall',
style: {
color: '#4572A7'
}
},
labels: {
format: '{value} mm',
style: {
color: '#4572A7'
}
},
opposite: true,
linkedTo:0
}],