Skip to content Skip to sidebar Skip to footer

I Can't Display The Vue-chart.js On The Page

I'm trying to learn how to use vue-chart.js and Chart.js . The problem is that on the Main page.vue does not display the graph itself here is the code from ../src/Chart/RandomChart

Solution 1:

vue-chartjs is not compatible with chart.js v3 (latest version) so you will need to downgrade chart.js to version 2.9.4 to make it work or you need to use chart.js barebone without the vue wrapper:

npm uninstall chart.js
npm install chart.js@2.9.4

Post a Comment for "I Can't Display The Vue-chart.js On The Page"