[Chartjs]-Trouble setting options for radar chart on Quickchart.io

1๐Ÿ‘

1๐Ÿ‘

quickchart.io defaults to latest Chart.js v2 according to their documentation. Therefore, your chart options need to be written as follows. Alternatively you can try to define the version parameter to explicitly tell quickchart.io to use Chart.js v3.

options: {
  scale: {      
    ticks: {
      suggestedMin: 0,
      suggestedMax: 5,
      stepSize: '1'
    }    
  }
}

For further details about the latest Chart.js v2 radar charts, please consult https://www.chartjs.org/docs/2.9.4/charts/radar.html

Leave a comment