我一整天都在搜索,但我找不到这个问题的答案。我是高等仪式的新手,但似乎并不难。 。 。
这就是我在剧本中所拥有的:
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %';
}
},
我想只显示this.point.name
中的前8个字符请帮助!
答案 0 :(得分:2)
您应该能够在此功能中使用标准javascript,例如子()。
tooltip: {
formatter: function() {
return '<b>'+ this.point.name.substring(0,7) +'</b>: '+ Math.round(this.percentage) +' %';
}
},