I am using the Core Plot framework, and attempting to work through the example applications. Are there any tutorials for using this framework?
Specifically, how do you provide labels for X and Y axes in a chart?
|
|
|
Unfortunately, given the fact that the API of the framework has not yet stabilized, there aren't that many tutorials out there, and several of the ones that do exist are already outdated. The example applications really are the best sources to see how to work with the framework. For example, to provide custom axis labels, take a look at the CPTestApp-iPhone's
First, you set the axis labeling policy to |
|||||||||
|
|
To provide custom formatted labels, you may assign a formatter to the labelFormatter property of an axis. You can either use the NSNumberFormatter configured to your preferences, e.g.:
Or, if you need more specific formatting, you can subclass |
|||
|
|