I am using achartengine and i am trying to draw rectangles, circles inside it, i have seen the ChartView.draw(Canvas) method but i dont know if it work on this way:
mChartView = ChartFactory.getLineChartView(this, dataset, mRenderer);
setContentView(mChartView);
Canvas a = new Canvas();
Paint p = new Paint();
p.setColor(Color.GREEN);
a.drawCircle(70, 80, 40, p);
mChartView.draw(a);
mChartView.repaint();
Is that code suppose to draw a green circle onto the chart ? Because the chart whit the series is being draw but not the circle.