[Chartjs]-How can i add value on bar in the charts in chart.js vs 3.x

1👍

The datalabels is since V2 (of datalabels) and V3 (of Chart.js) not self registerable anymore.

So at the top of your graph.js file you will need to register the datalabels plugin like so:

Chart.register(ChartDataLabels);

Leave a comment