Closed fenlandersoftware closed 10 years ago
Hi Chris,
I'm sorry this is not possible yet. I'll work on it as soon as I have some free time.
On 9 Sep 2014, at 11:13, Chris notifications@github.com wrote:
Is there a way to show the percentage symbol after the number ?
— Reply to this email directly or view it on GitHub.
Thanks, i've done a dirty hack for now (as I need it on all radial progress views I have - but look forward to the update.
Great control btw. looks great in the app I just added it to :+1:
Still no percentage symbol? :(
Line 380 of MDRadialProgressView.m
Change text = [NSString stringWithFormat:@"%.0f", percentageCompleted];
to
text = [NSString stringWithFormat:@"%.0f%%", percentageCompleted];
or introduce a new boolean flag and choose between the two
Is there a way to show the percentage symbol after the number ?