user2192466
user2192466

Reputation: 5

coreplot: reloadDataInIndexRange -- how to use it?

currently, I am using CPTXYGraph to plot my x,y graphs on my iphone application. However, I feel that the reloadData function is especially costly when I need the data to plot dynamically in real time. I would like to use reloadDataInIndexRange function... but I can't seem to access it.

Any ideas on how to access this function?

Upvotes: 0

Views: 160

Answers (1)

Eric Skroch
Eric Skroch

Reputation: 27381

Call it on the plot like you would any other method:

[plot reloadDataInIndexRange:NSMakeRange(location, length)];

Upvotes: 1

Related Questions