I am using the Radar chart from Chart.js and I want to hide the legend(label) I did this:
new Chart("myChart", {
type: "radar",
data: data,
options: {
legend:{
display: false,
},
}
});
But is not working for some reasons also checked those: Removing legend on charts with chart.js v2 Removing legend on charts with chart.js v2 I'm doing the same but not working