[Chartjs]-Issue when trying to implement chartjs-plugin-datalabels in vue-chartjs charts

1👍

You are using incopatible versions of chart.js and vue-chart.js.

Vue-chart.js v3 only works with Chart.js V2.

For Chart.js V3 you need vue-chart.js V4.

Make sure that if you decide to update vue-chart.js to V4 to import everything from the 'vue-chartjs/legacy' package since you are using Vue V2 and not V3.

So then your import will look like this:

import { Bar } from 'vue-chartjs/legacy'

Leave a comment