使用 GWT-Highcharts,我正在尝试为工具提示设置一个定位器:
ToolTip tooltip = new ToolTip();
tooltip.setOption("positioner", "function (labelWidth, labelHeight, point) { return { x: 160, y: 160 };");
这真的行不通,我得到
Uncaught TypeError: Object function (labelWidth, labelHeight, point) { return { x: -160, y: -160 }; has no method 'call'
有什么建议么?