[Chartjs]-Chartjs hide data point labels

51๐Ÿ‘

โœ…

I had the same issue and came across this post. Iโ€™m guessing you have datalabels plugin installed (I did). Add this to your chart options:

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

Hope this helps

Leave a comment