Possible Duplicate:
core-plot remove decimal points from axis labels
I ‘am building a Scatterplot with the help of Core Plot 1.0 version. The Graphs X and the Y value are being printing like 15.0,18.0,etc.. instead of 15 18 and so on. How can I round the value???
You can just cast your float values to int.
int newValue = (int)floatValue;