Hi,
I was looking at some examples and one thing caught my eye. In the example below
https://www.scichart.com/example/android-line-chart-example/
the graph appears smooth around the surface(appears to be a spline curve) but when I tried to implement the same the smoothness is gone(appears as a normal curve). Any apparent reason why this is happening.
- You must login to post comments
Hi Vidya,
FastLineRenderableSeries which is used in line example which you mentioned doesn’t use spline interpolation to draw line. It has many points in data series which results smooth line during rendering but under the hood it still draws straight line between each pair of points.
Best regards,
Yura
- Yura Khariton answered 6 years ago
-
Thanks.
-
BTW there is however a way to display spline line in SciChart Android – using a custom series https://www.scichart.com/example/android-chart-custom-series-spline-line/
- You must login to post comments
Please login first to submit.