[Chartjs]-Chart.js: How do I make the radar chart axis labels bigger?

4👍

It’s in the documentation:
https://www.chartjs.org/docs/latest/axes/labelling.html#scale-title-configuration

e.g.:

options: options = {
        scale: {
            pointLabels: {
                fontSize: 24
            }
       }
}

Leave a comment