iOS

Live graph using CorePlot in iOS

A demo about drawing real-time graph using CorePlot in iOS

Prabakaran Marimuthu
The Startup
Published in
5 min readMay 8, 2020

--

Source: Unsplash

Graph visualization is the prettiest thing when your work involves with more data. It is a better and perfect solution when you have hard-time with your data representation. You can depict your data in multiple ways like Line chart, Pie chart, Scatter plot etc,.

We had an interested challenging for one of our iOS application where we need to draw a real-time (live) curved line graph from stream of data received very frequently.

We did a quick research and tried some of iOS graph libraries (Charts, SwiftCharts,etc) and we faced some issues with real-time plot. Some libraries are adaptive with our goal, but it was costly in pricing. Finally we ended-up in the classic & open source graph/chart framework called “Core Plot”.

CorePlot

CorePlot is a two dimensional (2D) graph plotting library which provides highly customizable way to render many types of graph/charts. It is purely build around using the Apple Core APIs like Quartz 2D, Core Animation.

Using CorePlot library, you can draw awesome graph/charts in iOS, macOS and tvOS. CorePlot come-up with good test coverage that prevents us from issues & bugs.

In this blog, I’m going to demonstrate the technical way of plotting curved line graph from live stream of data points using CorePlot.

Anatomy of CorePlot Graph

Let’s visualize

To integrate CorePlot with your application, it’s a recommended way to install it through CocoaPods like below,

pod 'CorePlot', '~> 2.3'

and do pod install . The latest CorePlot version(v2.3 – released on Jan’20) is compatible with Xcode 11 and Swift 5.

Configure graph view

Once you imported CorePlot with your controller then drop a new UIView to your storyboard and assign it to CPTGraphHostingView .

CPTGraphHostingView - a graph container where it holds your graph or chart view. This is the container object of CPTGraph

Then add these extension CPTScatterPlotDataSource, CPTScatterPlotDelegate to your controller to take care of data source & user interactions of your graph.

Core Plot has two delegate methods to display the data points on the graph:

  1. numberOfRecords() - This method sets the number of data points the plot has.
  2. number() - This method returns the data point for each plot by using the plot identifier.

The padding properties are offsets from the bounds of the hosting view.
You can set up title for graph and style it using CPTMutableTextStyle()

Next we need to configure and scale axis for graph.

Configuring the axes

An axis is a line with respect to which a curve or line is drawn. The graph can have multiple axis. But basic graph will have just two axes, horizontal (x) and the vertical (y).

In CorePlot, each axis represented by class called CPTAxis and it also responsible for creating labels and ticks. The all axes in the grouped into a single object called CPTXYAxisSet .

In our example, CPTXYAxisSet creates two axes, one for x(values) one for y (time in sec). We can create two axis with grids, ticks and labels like below,

CPTMutableLineStyle - used to style axis lines & grid lines. You can also assign alternative band colors to graph plots using alternatingBandFills .

Setting up plot space

Once you done with your axes configuration, then we need to set up a plot space graph range. Plot space is responsible for mapping your data coordinates to device coordinates (say view-port of graph view).

To plot the live data versus time, the time along the horizontal axis, and data value on the vertical axis. The space might range from min to max value that we set for axis.

CPTXYPlotSpace is the instance which handles plot space of this graph and it have subclass that converts data coordinates into drawing coordinates.
The ranges of the graph are constrained by CPTPlotRange

Plot configuration

The representation of data in a graph is called as a “plot”. For example, data could be shown as a line or scatter plot, bar plot.

A graph can have multiple plots. Each plot can derive from a single data set, or different data sets. They are completely independent of one another.

To present a simple line plot of the data versus time, you need a value for the data at different points in time. To provide a plot with data using the data source approach, we set outlet of the CPTScatterPlot object, and then implement the data source methods.

The CPTScatterPlot class is used to draw line and scatter plots.

Animating the plot

Once you completed the plot & axis, then it’s time to show data flow in real-time. We can achieve this by animating the plot.

The integration of animation, which facilitates dynamic effects and interactivity. The Core Animation framework provides the mechanisms for positioning and transforming layers in time.

It’s just a very simple and short animate() method. The key here is to have the right fromValue and toValue for it to animate.

Whenever new data points come in, we adjust the X range to show the new point, animating the transition from the old X range to the new one.

The final output of graph seems like what we expected, it plots new data point (x value) in graph according time frame (y value) it comes in.

Final output of Live Graph

It’s a wrap! We achieved one of our goal with this awesome library. IMO, I recommend to consider CorePlot as a option whenever you need to work with complex data representation with graph/charts.

I hope you enjoyed the reading and learned something in the way. Thanks for staying in. Check out my Github repo for the full code base for this demo app and share your comments below.

--

--

Prabakaran Marimuthu
The Startup

#Engineering #Mobile #Apps #React & #Native @spritle-software