gpt4 book ai didi

highcharts - 在某些行上禁用 highcharts 工具提示,而在其他行上启用它?

转载 作者:行者123 更新时间:2023-12-03 06:17:13 24 4
gpt4 key购买 nike

我有一个包含多行的 Highchart。我想禁用某些行上的工具提示,并为其他行启用它。那可能吗?我了解了如何全局禁用工具提示,但不是按系列禁用。

例如,在standard line chart example上是否可以禁用红线和蓝线上的工具提示,但在其他两条线上保持启用状态?

最佳答案

更新

使用enableMouseTracking: Boolean

注意 enableMouseTracking: Boolean 是在提出此问题后引入的

旧答案

我刚刚禁用了东京系列中的高度点

这是你的代码

         tooltip: {
formatter: function() {

if(this.series.name == 'Tokyo' && this.y == 26.5 ){
return false ;
// to disable the tooltip at a point return false
}else {
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y +'°C';
}
}
}

jsfiddle

关于highcharts - 在某些行上禁用 highcharts 工具提示,而在其他行上启用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12115445/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com