[Chartjs]-Ionic + Angular Charts: Uncaught Error: Chart.js library needs to included

4👍

The fix was to put before angular-chart.js as Jossef Harush implied as a comment in my post.
Also it is redundant to import both ”min” and normal js files

0👍

include js in this order

<script src="lib/chart.js/dist/Chart.min.js"></script>

<script src="lib/angular-chart.js/dist/angular-chart.min.js"></script>

Leave a comment