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
742 stars 173 forks source link

show png or jpg image as background #101

Closed rajesh-vi closed 7 years ago

rajesh-vi commented 7 years ago

How to show png or jpg image as background of circular progress bar? is there any option to do it?

crisbeto commented 7 years ago

There's no built-in option, but it's easy to do with CSS:

.round-progress {
  background: url(<link to your image>);
  border-radius: 100%;
}