gpt4 book ai didi

javascript - 如何在饼图工具提示中显示特定类别的自定义文本

转载 作者:行者123 更新时间:2023-12-03 00:04:52 26 4
gpt4 key购买 nike

我有一个饼图,当用户将鼠标悬停在特定类别上时,我想显示专门针对该类别的自定义文本。

JS fiddle 链接:https://jsfiddle.net/mewohraz/1/

tooltip: {
pointFormat: '{point.custom} (point.category == 'Internet Explorer) ? 'display customtext'
},

例如,当用户将鼠标悬停在 Internet Explorer 上时,我想显示版本的项目符号列表。文本将被硬编码,因此它不是来自数据系列。

我该怎么做?

最佳答案

您可以使用工具提示选项的formatter功能来定义您自己的文本: tooltip.formatter

tooltip: {
formatter: function(){
if(this.point.name == "Internet Explorer")
return "my custom text" ;
else
return '<span style="color: ' + this.point.color + '">' + this.point.name + '</span><br/>' + this.point.custom ;
}
}

关于javascript - 如何在饼图工具提示中显示特定类别的自定义文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55006437/

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