1

I'm trying to remove the entire color background of my graph including this border black color, to start customizing with my own. I've tried:

    mrenderer.setApplyBackgroundColor(true);
    mrenderer.setBackgroundColor(Color.TRANSPARENT);

Here's the result:

enter image description here

Is there anyway to get it all out there of there?

mango
  • 5,577
  • 4
  • 29
  • 41

1 Answers1

0

Try to set the color to Color.argb(0, 255, 255, 255) instead of Color.TRANSPARENT.

Dan D.
  • 32,246
  • 5
  • 63
  • 79