How to change option values?
yavuzoktay opened this issue · 1 comments
yavuzoktay commented
Hello,
How can I change the options given in the component (max, radius, color, background) without using html in typescript, javascript?
crisbeto commented
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;
}
}