[Chartjs]-ChartJS Polar Area Chart Scale Removing

2👍

The property you need to edit is actually in scale and not scales as you did (and as you do with other chart types) :

var options = {
    scale: {
        display: false
    }
};

And this will give you this result.

2👍

What worked for my case (chart.js v3.7.1) was:

var options = {
  scales: {
    r: {
      display: false
    }
  }
}

PolarArea chart uses RadialLinearScale. So, as the documentation states here the display: none property should go to the axis id (options.scales[scaleId]) and the axis id for RadialLinearScale is r.

Leave a comment