0
我有一張Highcharts折線圖並且啓用了工具提示。 我如何定製只有標記點的工具提示,並讓所有其他點顯示默認工具提示。我需要在包含標記點的工具提示中添加額外的文本。在標記點上自定義Highcharts工具提示並在其他點上顯示默認工具提示
我有一張Highcharts折線圖並且啓用了工具提示。 我如何定製只有標記點的工具提示,並讓所有其他點顯示默認工具提示。我需要在包含標記點的工具提示中添加額外的文本。在標記點上自定義Highcharts工具提示並在其他點上顯示默認工具提示
我已經找到了如何做到這一點:
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);
}
}