Hi,
Although it sounds simple, but I am not able to change the background color of the charts. This is the area that lies between the axes. Kindly let me the method to do so.
Thanks,
Mausam
Background color change
Re: Background color change
Hi Mausam,
As told to you through the prosupport a few days ago:
You are probably missing to deactivate the back wall gradient. The following code seems to work fine here:
If you still have problems with it, please don't hesitate to let us know.
As told to you through the prosupport a few days ago:
You are probably missing to deactivate the back wall gradient. The following code seems to work fine here:
Code: Select all
tChart1.getWalls().getBack().setColor(java.awt.Color.yellow);
tChart1.getWalls().getBack().getGradient().setVisible(false);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Background color change
Thanks Yeray,
This is working.
This is working.