arne99

Members
  • Content count

    4
  • Joined

  • Last visited

About arne99

  • Rank
    Forum Newbie
  1. German 'umlauts' Again...

    no, nothing changes... ok, i think i will change the label, or try to describe them with other characters. thank you!
  2. German 'umlauts' Again...

    It's only the y-axis! Only the rotated label...
  3. German 'umlauts' Again...

    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? ;-)
  4. German 'umlauts' Again...

    Hi, I have a problem with german umlauts ä,ö,ü,ß... I know somy people had these problems before and i could solve most of my problems by using the 'BOM'-characters (chr(239).chr(187).chr(191) . It works at the chart caption and at the labels in the chart. But it does not work at the x- and yAxisNames. I try % F6, ä, ö, but nothing is shown in the charts. Any ideas? Thank you!