[Chartjs]-Chartjs Radar – Change color of end point labels

7👍

options:{
  scale:{
    pointLabels:{
       fontColor:"red",
    },
}

In theory this should be the configuration you should use if we follow the doc for the Linear Radial Axis

The doc is for the version 2.7.2, so I am not sure it would work for your version, or if it would be any different in older version.

1👍

options: {
        scales: {
            r: {
          
                pointLabels:{
                    color: 'rgb(54, 162, 235)',
                },

            },
}

I don’t know what version you are using, but the current configuration works for me.

configuration works for me

Leave a comment