How can you achieve the same using the Fusion Charts jQuery plugin and a "javascript" rendered chart. There is no option to set transparency in the insertFusionChart() function call that presumably calls the render() method.
$("#chart_demo").insertFusionCharts({
swfUrl: $("#ctype").val(),
renderer: "javascript",
dataSource: $("#charttext").val(),
dataFormat: "xml",
width: $("#cwidth").val(),
height: $("#cheight").val(),
debugMode : 0,
});
I can do it in plain javascript as described earlier but I prefer jQuery. Essentially how can I do the equivalent of myChart.setTransparent(true); using jQuery plugin?