您好,非常感谢您可能给予的任何帮助。我正在尝试用一个数字对工具提示HTML中显示的{point.y}求和,例如,如果{point.y}是100,我希望它是100+1=101。但我找不到这样做的方法。(尝试{point.y}+1,但无法正常工作,因为它被解释为HTML,而不是求和运算)。谢谢!!
hkmswyz61#
您可以使用pointFormatter或formatter函数回呼做为工具提示。例如:
pointFormatter
formatter
tooltip: { pointFormatter: function() { return `<span style="color:${this.color}">\u25CF</span> ${this.series.name}: <b>${this.y + 1}</b><br/>` } }
现场演示:http://jsfiddle.net/BlackLabel/9ayqdot6/API引用:https://api.highcharts.com/highcharts/tooltip.pointFormatter
1条答案
按热度按时间hkmswyz61#
您可以使用
pointFormatter
或formatter
函数回呼做为工具提示。例如:现场演示:http://jsfiddle.net/BlackLabel/9ayqdot6/
API引用:https://api.highcharts.com/highcharts/tooltip.pointFormatter