Hi
I've got a problem which has been mentioned in the Knowledge Base.
However, as FusionCharts uses js functions to render the HTML required to show the flash, and my js skills are not what they could be, I'm unsure how to explicitly set 'wmode="transparent"'.
Within FusionCharts.js, there is a section which is as follows:
setTransparent: function(isTransparent){
//Sets chart to transparent mode when isTransparent is true (default)
//When no parameter is passed, we assume transparent to be true.
if(typeof isTransparent=="undefined") {
isTransparent=true;
}
//Set the property
if(isTransparent)
this.addParam('WMode', 'transparent');
else
this.addParam('WMode', 'Opaque');
},
If I view "rendered source" in Firefox though, I cannot see that this parameter is set at all.
Any help much appreciated.
Thanks