Francesco
Francesco

Reputation: 229

Draw bigger points on a Graph with core plot

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

Answers (1)

Eric Skroch
Eric Skroch

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

Related Questions