您好我正在使用以下示例:
如何更改y轴上的值的格式。例如,当我选择百分比时,我希望值显示为+ 25%。我现在如何初步设置它,但如何使用Jquery脚本更改它。
formatter: function () {
return (this.value > 0 ? '+' : '') + this.value + '%';
}
/ S
答案 0 :(得分:0)
如果在工具提示中使用formatter,则应该使用this.y而不是this.value。
formatter: function() {
return (this.y > 0 ? '+' : '') + this.y;
}
答案 1 :(得分:0)
我解决了。只需使用
chart.options.yAxis[0].labels.format = '{value} %';
以百分比显示标签