Chartjs-Chart js dataset label not showing

1👍

The problem was the chart.js integration, I only select a few controllers I thought I only needed, and come up with this.

  Chart.register(
    LinearScale,
    CategoryScale,
    LineElement,
    LineController,
    PointElement
  );

And was fixed using

Chart.register(...regiserables);

But I settled with

import Chart from 'chart.js/auto';

And completely remove the Chart.register.

Leave a comment