/PercentageCircleSvg

Percentage Circle Svg

Primary LanguagePHP

#Percentage Circle Svg

Version 1.1

##Description This PHP class allows you to create Percentage Circle Svg. Really customizable, you can change the radius of the circle, the percentage, the stroke width, the colors, the text, etc... Percentage Circle Svg

##How to use it

$svg = new PercentageCircleSvg(50, 50);
print $svg->getSvg();

Svg example 50%

$svg = new PercentageCircleSvg(150, 70, 20, '#056322', 'green');
print $svg->getSvg();

Svg example 70%

$svg = new PercentageCircleSvg(50, 25, 30, 'grey', 'black', 'white', 'white', 'none');
print $svg->getSvg();

Svg example 25%

$svg = new PercentageCircleSvg(70, 66, 5, 'purple', 'pink');
print $svg->getSvg();

Svg example 66%