Can someone tell me how to remove the decimal points from the Axis labels? Instead of 10.0 I'd like to have only 10 showing.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Set the |
|||||
|
|
This will take care of the decimals on the x axis as well as add commas with NSNumberFormatterDecimalStyle. You will need to do the same for the y axis. There are a ton of things you can do with NSNumberFormatter, including converting numbers into dollars using:
Play around with the Esc key to see all formatting available for setNumberStyle or other methods. |
|||||
|