Chartjs-Chart.js plugins.register function with outer data

0👍

Given that your global variable is Chart, you need to declare it in your components.

Under your imports, before your component decorator, do

declare var Chart: any;

This way, you will gain access to the global variable.

Leave a comment