Reputation: 229
In my iOS app I would like to mark special points of a function, like the intersection of the curve with the x and y axis. Is this possible with core plot?
Upvotes: 0
Views: 35
Reputation: 27381
The datasource can provide different plot symbols for each data point using the -symbolForScatterPlot:recordIndex:
method. You can also use a second scatter plot with no data line that contains only the points you want to highlight.
Upvotes: 1