Chartjs-How to remove scale labels in chartjs from radar chart?

0👍

After inspecting chart object with console.log(new Chart(ctx, config) I found where ticks configuration is now:

const chart = new Chart(ctx, {
  type: 'radar',
  data: data,
  options: {
    scales: {r: {ticks: {display: false}}}  // <
  },
});

Leave a comment