I'm using a commercial third party library that is very restrictive of the formatting of numbers displayed on the screen.
the formating can only done by You can customising a String called labelFormatString
on each series, for example:
donutSeries.labelFormatString = @"$%.02f";
just like printf/NSString stringWithFormat
.
and of course now my requirements impose me one final tweak that I can't figure out
instead of being display $123456789
I have to display them $123,456,789
Is if possible to achieve this using ONLY the string mentioned above and NOTHING ELSE (no NSNumberFormater
etc).
Thanks
Jason