Chartjs-Angular 9 chartJs is not updating view after data update

0👍

finally find a solution.

  ngOnInit() { 
this.sharevariableService.getApkHistoryDto().subscribe((apkHistory) => { 

 if(apkHistory != null) { 
   this.isLoading = true; setTimeout (() => { 
     this.loadInstallEvolution(apkHistory); 
 }, 10); } 

}); } 

and when the loading is true, i show a spinner instead of the gapgh

Leave a comment