How to draw a SMOOTH curve using different points in the iOS kernel?

I can build a curve, but it is not smooth. In fact, he is completely distracted and wavy. Can someone help me or suggest a method to make this curve line smooth?

Thanks in advance.

+5
source share
1 answer

A new version was added to the Core Plot structure after version 1.0, which draws scatter plots with a smooth line. You will need to get the latest Mercurial code or wait for the next version, currently unplanned.

plot.interpolation = CPTScatterPlotInterpolationCurved;
+18
source

All Articles