gpt4 book ai didi

javascript - highcharts 工具提示格式化程序仅显示 this.point.name 中的前 8 个字符

转载 作者:行者123 更新时间:2023-11-30 17:26:29 25 4
gpt4 key购买 nike

我搜索了一整天,找不到这个问题的答案。我是 highcharts 的新手,但这似乎并不难。 . .

这是我在脚本中的内容:

 tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %';
}
},

我只想显示 this.point.name 的前 8 个字符

请帮忙!

最佳答案

您应该能够在此函数中使用标准的 javascript,例如子字符串()。

 tooltip: {
formatter: function() {
return '<b>'+ this.point.name.substring(0,7) +'</b>: '+ Math.round(this.percentage) +' %';
}
},

关于javascript - highcharts 工具提示格式化程序仅显示 this.point.name 中的前 8 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24135206/

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