Chartjs-Chart.js – change the scale background color of Radar type

1👍

Supposing you have a "config" object containing your options/configurations inside your chart, do the following:

chart.config.options.scale.ticks.backdropColor = "black"; // "scale" is singular
chart.config.options.scale.ticks.display = true; // "scale" is singular

Leave a comment