https://i.stack.imgur.com/Ccd7h.png The % symbol isn't displaying correctly in the highcharts
ageData = {
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
}
}
I've tried adding a tooltip formatter based on some suggestions but it hasn't worked. Not sure why this issue is happening. If more information is needed, please let me know. Any assistance would be greatly appreciated. Thank you in advance.