I have a problem. I\'m making a graph with AChartEngine and I would like to have the background of the whole graph to be transparent:
XYMultipleSeriesRendere
If you want to set transparent background color, you can try:
renderer.setMarginsColor(Color.argb(0x00, 0xff, 0x00, 0x00));
It just be work for me!