crisbeto / angular-svg-round-progressbar

Angular module that uses SVG to create a circular progressbar
https://crisbeto.github.io/angular-svg-round-progressbar/
MIT License
741 stars 173 forks source link

Want multiple progress bar in single page but in different color #162

Closed sidkasundra closed 6 years ago

sidkasundra commented 6 years ago

how can i set particular color for particulate progress bar.. whenever i change the color that is in round-progress.config.js but it change the color of both the progress bar.. Thank you

crisbeto commented 6 years ago

The settings in the round-progress.config apply to all progress bars. If you want to set the color only for a particular component, you can pass it in instead:

<round-progress color="#ff0000"></round-progress>
sidkasundra commented 6 years ago

ow,,,it works..silly i tried through style that not work for me [<round-progress style="color:#ff0000" [current]="current" [max]="max"> ] Thanks