我正试图在加载时默认显示工具提示。但是我能找到的代码:
chart.tooltip.refresh([chart.series[0].points[0]]);
等只会给我这个错误:
a.getLabelConfig is not a function
我在某处读到chart.tooltip
可能还没准备好,但我在创建图表后从自调用函数运行它,所以我应该好好去。
有没有人经历过类似的事情,并找到了解决方案?
答案 0 :(得分:1)
有两种使用方式tooltip.refresh
:
chart.tooltip.refresh([chart.series[0].points[0]])
chart.tooltip.refresh(chart.series[0].points[0])