I would like to increase the size and change color of the font in a chart label, but it's not the legend label. It is the name in the side of each data of the radar chart.
I tried doing this:
options={{
legend: {
labels: {
fontColor: 'rgba(255,255,255,1)',
fontSize: 16,
fontStyle: "bold"
}
},
But it only changes the name of the 'Undefined' label.
Thank you for any help.