I can't for the life of me figure out how to achieve a transparent background with fusion charts XT using the jquery plugin
[@version fusioncharts/3.2.3-sr3.5347]
here's my code:
$('#myChart').insertFusionCharts({
type:"Pie2D",
renderer: "flash",
width: "30",
height: "30",
id: 'p-'+data.id,
dataFormat: "json",
wmode: 'transparent',
dataSource: {
chart: {
pieRadius: 15,
bgAlpha: 0,
animation:0,
showShadow:0,
enableRotation:1,
showLegend:0,
showLabels:0,
showValues:0,
showToolTip:0,
dataLabels: 0,
showBorder:0,
enableSmartLabels:0
},
data: [
{value: data.med, color:'#009000'},
{value: 100 - parseInt(data.med), color:'#900000'}
]
}
});
I've tried setting bgAlpha equal to '0,0' , but that doesn't work either.
Thanks.