在标记点上自定义Highcharts工具提示,并在其他点上显示默认工具提示

时间:2014-10-04 00:36:52

标签: highcharts tooltip

我有一张Highcharts折线图,我启用了工具提示。 如何仅针对带标记的点自定义工具提示,并使所有其他点显示默认工具提示。我需要在工具提示中为有标记的点添加额外的文本。

1 个答案:

答案 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);
    }
}