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

Feature Request: add classes to svg #140

Open Juchar opened 6 years ago

Juchar commented 6 years ago

It would be great if the generated svg would have classes assigned (don't know if this is possible).

That way you could easily style the colors with CSS which would be especially useful if you depend on theme colors that are specified in CSS.

Currently I do it like follows, but a class would be more "clean" I think:

round-progress.progress-secondary > svg > path, 
round-progress.bg-progress-secondary > svg > circle {
  stroke: #1234FF !important;
}