Hi, thanks for your support.
I'm using v3 Enterprise and different *.swf-files like Pie3D.swf or MSLine.swf.
I create a XML-File by using PHP:
$xml = "<?xml version="1.0" encoding="UTF-8"?>";
$xml .= "<chart caption='Bonität' xAxisName='Einzeläußerungen' yAxisName='Beiträge' >";
...
$BOM = chr(239).chr(187).chr(191);
fwrite($fp, $BOM.$xml);
After creating the xml-file, I open the swf-File by using Javascript:
<script language="JavaScript" src="FusionCharts.js"></script>
<div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>
<script type="text/javascript">
var myChart = new FusionCharts("MSLine.swf", "myChartId", "450", "300", "0", "0");
myChart.setDataURL("Data.xml");
myChart.render("chartdiv");
</script>
The german umlauts works fine at any places in the charts. The 'ä' in 'Bonität' is shown right, the characters in the x- and y-axis don't.
Just an idea: Is it possible to include an image at the x- and y-axis? ;-)