[Chartjs]-Chartjs-plugin-datalabels not showing values on chartjs

2👍

You dont register the plugin as described in the documentation

import {Chart} from 'chart.js';
import ChartDataLabels from 'chartjs-plugin-datalabels';

Chart.register(ChartDataLabels);

Leave a comment