Hi Jerry,
When you call BaseChart.setRoundedFrame to create the rounded corners, you can optionally provide an "external background color" (the background outside of the rounded frame). If the image format you use supports true color transparency (eg. PNG), you may set the exterior background to Transparent. If you are using an image format that does not support transparency (eg. JPG), you would need to set the exterior background to the same color as your web page background.
For example:
$c->setRoundedFrame(0x000000);
or
$c->setRoundedFrame(Transparent);
Hope this can help.
Regards
Peter Kwan |