我有一张Highcharts折线图,我启用了工具提示。 如何仅针对带标记的点自定义工具提示,并使所有其他点显示默认工具提示。我需要在工具提示中为有标记的点添加额外的文本。
答案 0 :(得分:0)
我已经想出了如何做到这一点:
tooltip :{
formatter: function(a) {
if(condition)
return "custom tooltip for the marker point";
//otherwise call the defaultFormatter function this way
return a.defaultFormatter.call(this, a);
}
}