a.getLabelConfig不是一个函数

时间:2013-09-12 09:04:00

标签: highcharts

我正试图在加载时默认显示工具提示。但是我能找到的代码:

chart.tooltip.refresh([chart.series[0].points[0]]);

等只会给我这个错误:

a.getLabelConfig is not a function

我在某处读到chart.tooltip可能还没准备好,但我在创建图表后从自调用函数运行它,所以我应该好好去。

有没有人经历过类似的事情,并找到了解决方案?

1 个答案:

答案 0 :(得分:1)

有两种使用方式tooltip.refresh

  • 当您共享工具提示时:chart.tooltip.refresh([chart.series[0].points[0]])
  • 当您有非共享工具提示时:chart.tooltip.refresh(chart.series[0].points[0])