mtatiana

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by mtatiana

  1. problem with SetDataXML

    Hello, I want to create an MSSpline chart using PHP, so i have generated an XML code with PHP and i want to put the data using setDataXML but it doesn't work. My code: $strXML = ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; Erreur FusionCharts var chart = new FusionCharts('FusionCharts/Charts2/MSSpline.swf', 'ChartId', '500', '500', '0', '0'); chart.setDataXML('<?php echo $strXML ?>'); chart.setTransparent(true); chart.render('chartdiv'); Thanks for your help
  2. problem with SetDataXML

    Thanks a lot. It works!!!