[Chartjs]-Why is Chart.js not rendering? Error: Uncaught ReferenceError: Chart is not defined

1👍

You are loading your chart.js script after your content. Thats why it is undefined. Also you don’t need 2 CDN’s.

Best thing you can do is place the script tag to load chart.js in the head section that way you are always sure it is loaded before your own scripts run.

Leave a comment