Currently, the only solution is to use the offset parameter. However, since Highcharts 3.0 you are free to manage this property and the update axis:
chart.yAxis[index].update( options );
Where parameters is an object with parameters for yAxis, including the offset. To get the position of the pixel, you can use the internal function chart.xAxis[index].translate(value)(a bit of a hack, but it works). Therefore, when they are combined, see Example: http://jsfiddle.net/UGpPV/6/
source
share