As an example making an line graph, with a transparent background behind the plot...
preferably with anti aliased lines...
This way the generated .png graphs can be more useful and easier to blend in with other content etc....
I know php gd etc can output transparent background images... that's not exactly what I'm asking for here: the closest I've come is using jpgraph for php, and then taking the image output back to php gd and making the white background transparent and outputting that as a .png image with alpha background. its really ugly though, due to the fact that the grpah lines will have been anti aliased ontop of a white background, make those lines still have traces of white/(whatever color residue from the lines), and php gd etc isn't exactly providing the tools of photoshop to mask out and feather dirty pixels.
So far I've found nothing.. all of them just seem to want to default to white backgrounds or otherwise specified colors/background images. nothing with alpha channels. I just don't have the time or knowledge to make an entire library for making graphs
You can use fusion charts which provide this functionality to provide transparent background of generated graphs by setting bgAlpha='0'
like this
<chart bgColor='999999,FFFFFF' bgAlpha='0' ...>
Also, you can use their documentation for more customizations.
You can also use Dojo Charts (Free) by setting following parameter
programmersChart.surface.rawNode.childNodes[1].setAttribute('fill-opacity','0');