While @a7tx42 seems to have given up/fixed it 7months ago, this problem is still present.
I've kinda had to use a hybrid of the ArtioFusionChart and original Fusion Chart integration codes to make some of my dynamic charts to work in Joomla.
Got everything working now, except this little bug - my dropdown menu keeps going behind the charts.
i can see in FusionCharts.js that wmmode is set to "transperent" as standard, and my menu div's z-index is set to 120 (increased it to 700 with no success), but still nothing. Is there another variable that I need to pass somewhere?
Here is the code that displays the chart in my page:
//Initialize <chart> element
$strXML = "<chart caption='Religion % of Regional Population' numberPrefix='' formatNumberScale='0' bgColor='FFFFFF' pieRadius='190' slicingDistance ='20' chartRightMargin='0' chartLeftMargin='0' chartTopMargin='0' chartBottomMargin='0' captionPadding='0' showPercentValues='0' showAboutMenuItem='1' aboutMenuItemLabel='About Policy Research Centre' aboutMenuItemLink='n-
www.policyresearch.org.uk'>";
//Convert data to XML and append
foreach ($arrData as $arSubData)
$strXML .= "<set label='" . $arSubData[1] . "' value='" . $arSubData[2] . "' isSliced='" . $arSubData[3] . "' />";
//Close <chart> element
$strXML .= "</chart>";
//Create the chart - Column 3D Chart with data contained in strXML
echo renderChart("/demo/PRC/components/com_artiofusioncharts/charts/single-series-charts/doughnut3d/chart.swf", "", $strXML, "chartID1", 690, 350, false, true);
It relies on FusionCharts.js and FusionsCharts.php to run, both are the unedited versions from Artio/Fusio