crisbeto/angular-svg-round-progressbar

How to change option values?

yavuzoktay opened this issue · 1 comments

Hello,
How can I change the options given in the component (max, radius, color, background) without using html in typescript, javascript?

Here's an example if you want to change the defaults for all progress circles: https://github.com/crisbeto/angular-svg-round-progressbar#configuring-the-default-values

Otherwise if you want to change it for a particular one, you can get a hold of the component using ViewChild:

class YourComponent {
  @ViewChild(RoundProgressComponent) progressCircle: RoundProgressComponent;

  ngAfterViewInit() {
    this.progressCircle.radius = 10;
  }
}