gpt4 book ai didi

javascript - 是否可以使用 pointFormatter 完全隐藏工具提示?

转载 作者:行者123 更新时间:2023-12-03 07:25:21 24 4
gpt4 key购买 nike

在下面的代码中,我有一个用于工具提示的 pointFormatter。对于某些点,我想做的是完全隐藏工具提示。我尝试在这些情况下返回 null 或 false,但是仍然出现空的工具提示。使用 pointFormatter 时是否可以完全隐藏工具提示?我已经看到使用其他格式化程序可能会返回 null 或 false,但这里似乎不是这种情况。

            tooltip: {
useHTML: true,
borderWidth: 0,
backgroundColor: "rgba(37,37,37,0.95)",
style: {
padding: 10
},
headerFormat: "",
pointFormatter: function () {
if(this.hrr_num === 16){
return null;
}
return self.getToolTip(parseInt(this.hrr_num));
},
followPointer: false,
shadow: false,
shape: "square",
hideDelay: 0
}

最佳答案

工具提示对象中有多个*formatter 函数。您正在寻找的那个叫做formatter。如果您在此函数中返回false,则工具提示将根本不会显示。这应该可以解决问题:

        tooltip: {
[...]
formatter: function () {
if (this.point.hr_num === 16) {
return false;
}
return self.getToolTip(parseInt(this.point.hr_num));
},
[...]
}

关于javascript - 是否可以使用 pointFormatter 完全隐藏工具提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36025867/

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