Graphical graph in Android GraphView

Is it possible to make the line graph more smooth? If my data does not have a large number of points on the graph?

+5
source share
1 answer

First, you can smooth the data using the Savitzky Golay filter, and then send it to GraphView.

A sample of this filter can be found here: Savicki Golei Filter

+1
source

All Articles