I'm developing an iPhone application, in which I display a graph using Core-Plot framework. The graph is made of a CPScatterPlot, and what I'm trying to do is to animate the appearance of this plot on the screen.
I'm not looking for a fade-in animation, or for the plot to be slid from the left of the screen. I'd rather like the user to see each point of the graph appearing one at a time (starting from the left), so that it would seem the graph is being traced slowly.
I doubt Core-Plot provides a way to "slow down" the tracing of a graph, so I will probably have to implement this entirely from scratch. Does anyone have a clue on how I could do that ?
Thanks