[Chartjs]-Configuring a Radar Chart w/Chart.js

2👍

Simply replace with :

var radarOptions = {
       scale:{
         pointLabels: {
        fontSize: 20
      },
       },

  responsive: true,
  maintainAspectRatio: true,
  title: {
  display: false
  },
  legend: {
  display: false,
  }
};

Leave a comment