
% symbol is not showing in highchartsageData = {
chartConfig: {
options: {
chart: {
type: 'pie',
width: 275,
height: 220,
marginTop: 70
},
plotOptions: {
pie: {
size: 100,
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
style: {
color: '#2A9ACC',
fontFamily: 'proximanovalight',
textShadow: 0
}
}
}
}
},
title: {
text: 'Age',
style: {
color: '#2A9ACC',
font: '16px proximanovalight'
}
},
tooltip: {
pointFormat: '{series.name}: <b>' + this.point.percentage + ' % </b>'
},
series: [{
name: "Age",
minPointWidth: 20,
showInLegend: false,
colorByPoint: true
}
],
loading: false
}
}我添加了一些链接中指定的工具提示格式化程序,但没有成功。我不确定这个问题的原因。如果你需要更多的细节,请告诉我。很高兴提供。任何帮助都将不胜感激。提前感谢
https://stackoverflow.com/questions/38334189
复制相似问题