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 - Progress svg path with linear gradient #179

Open nmobregon opened 5 years ago

nmobregon commented 5 years ago

I needed it for a client's implementation. Would be great to have it included in the original

FULL EXAMPLE

<round-progress
      [current]="current"
      [max]="max"
      [stroke]="stroke"
      [radius]="radius"
      [semicircle]="semicircle"
      [rounded]="rounded"
      [responsive]="responsive"
      [clockwise]="clockwise"
      [gradStartColor]="'#7573ab'"
      [gradEndColor]="'#aabbcc'"
      [gradDirection]="'right'"
      [background]="background"
      [duration]="duration"
      [animation]="animation"
      [animationDelay]="animationDelay"></round-progress>

Thanks! Best regards