[Chartjs]-How can I remove background lines from polar chart by react chart js 2?

1๐Ÿ‘

โœ…

As you can see you are getting TS errors because you are using V2 syntax, if you configure your options in the following way it works fine:

const chartOptions = {
  scales: {
    r: {
      grid: {
        display: false
      }
    }
  }
};

https://codesandbox.io/s/hidden-tree-8gdqxg?file=/App.tsx

Leave a comment