I use the AChartEngine library for graphs
I can create a schedule
GraphicalView view = ChartFactory.getLineChartView(mContext, mXYDataSet, mXYMultipleRenderer);
But when the view has already been created, there is no method that performs adding / removing points on the chart inside the GraphicalView
class.
In my project, I need to dynamically update the chart with a new dataset every second. Is there any solution?
source share