1...
2options: {
3 legend: {
4 display: false
5 },
6 tooltips: {
7 callbacks: {
8 label: function(tooltipItem) {
9 return tooltipItem.yLabel;
10 }
11 }
12 }
13}
14
1// Add at the start of your script
2Chart.defaults.global.legend.display = false;