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 174 forks source link

Set the fill color of the circle. #53

Closed Slavrix closed 8 years ago

Slavrix commented 8 years ago

I could see that there are options to be able to colour the stroke, and the background of the stroke but there isn't any option to fill the circle. Or have I missed something.

crisbeto commented 8 years ago

Nope, it's not through the options. You can do it with CSS though, for example:

.round-progress circle{
  fill: #f00;
}