I have a graph with two plots. The first plot, CPTScatterPlot *boundLinePlot, is very data intensive and only has to be created once.
The second plot, CPTScatterPlot *dotPlot, on the other hand, is only a single point that moves across the graph in response to changes in a slider. I only have to refresh this plot.
I have been using [graph reloadData] at the end of my slider method, but that must refresh both plots and performance suffers greatly. What is the syntax for reloading just one plot?
Also, might it be possible to refresh only when the slider stops moving rather than refresh for every value of the slider between starting and stopping?