I am using the graphview library on Android. I need real time / live data. the normal data example works fine, now I want to extend it that on the push of a button I get new data points
public void onClickButton(View v)
{
GraphViewData g = new GraphViewData(counter, 7.0d);
counter = counter + 1;
exampleSeries.appendData(g, false, 50);
The graph doesn't get updated, the documentation only says I have to use appendData(). Any idea what is missing?