I cannot get the tooltip positioner function to work. It acts as if this function is not here at all and loads the tooltip like normal. The event function above it works. I have tried everything and cannot figure out why it is simply ignoring this. I can use any of the other properties of the tooltip like shadow but the positioner will not work. The chart draws with all my settings except the positioner setting.
This is echoed onto a page with php inside a domready mootools function.
var chart_options = '.$chart_options.'
chart_options.xAxis.events = {setExtremes:function (e){ChartSettings.load_zoom_data(e)}}
chart_options.tooltip = {positioner: function () {return {x:10,y:30}}}
window.chart = new Highcharts.StockChart(chart_options, function (chart){
chart.addEvent("tooltipRefresh", function (){ChartSettings.set_hover_points(chart.hoverPoints)});
});
Your help is greatly appreciated.
Here is an example of this working:
http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/positioner/
The chart_options object

Turns out this was a real problem in the version of highstock I was using. I upgraded to the latest version and now it works. Thank you all for your help and direction.
The version it does not work in is v1.1.5.
thanks,