tigrr / circle-progress

Responsive, accessible, animated, stylable with CSS circular progress bar available as plain (vanilla) JS and jQuery plugin.
https://tigrr.github.io/circle-progress
MIT License
164 stars 43 forks source link

Additional text below the value #2

Closed ScanThemes closed 4 years ago

ScanThemes commented 4 years ago

Is it possible to add additional text under the value? For instance:

Thanks.

tigrr commented 4 years ago

You can generate arbitrary SVG code passing your function as the value of textFormat option.

See this fiddle.

Be careful though. innerHTML is used to insert the result of function call. All dynamics values must be escaped. (No need to escape value and max arguments to custom function, they are already formatted as numbers.)

tigrr commented 4 years ago

@ScanThemes one more thing. I've just updated the repo. Please make sure to use the latest version.

ScanThemes commented 4 years ago

@tigrr Excellent, thank you!