Chartjs-How Can I Get An Instance of a ChartJS Bar Chart Using Angular

0👍

In your chart component where you call new Chart() you have to put it in a variable (this.chart = new Chart()) and then access that from your parent component as described in this thread: angular 2 access child component property from parent component

Leave a comment