var myChart = new Chart(ctx, {
type: 'radar',
data: chartData,
options: {
scale: {
min: 0,
max: 5,
stepSize: 1
},
scales: {
r: {
pointLabels: {
fontSize: 100
}
}
},
elements: {
line: {
borderWidth: 3
}
}
}
})
I'm trying to change the font size for the point labels on a radar chart. It seems that this is the way you are supposed to do it, but it is not working for me. Any help is greatly appreciated.