[Chartjs]-Chart.js line graph-removing labels on the line

3👍

Put this in option

plugins: {
    datalabels: {
        display: false,
    },
}

0👍

This works:

options: {
    legend: {
        display: false
    },
}

Leave a comment