[Chartjs]-Load external json data file in to chartjs in the angular component

1👍

Juse mention the path as follows,

loaddata() {
   this.Items = this.http.get("../data/external_data.json")
                 .map(res => res.json());
 }

and assign this.Items to your array

Leave a comment