Daniel

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by Daniel

  1. Hello I've just switched with the V3.0.5 of FusionCharts and nothing is rendering anymore. However, the swf is still generated but if I right click it, it says : "Movie not loaded". I used to call it with JS and there are no error on page. I looked at the documentation but there's not a lot of information to switch from 3.0 to 3.0.5 and I found nothing in the forum about my bug. Thank for the help. Here's my XML code : <?xml version="1.0" encoding="UTF-8"?> <graph caption='TITLE CAPTION' subcaption='' xAxisName='Status' yAxisName='WO No.' showValues='0' showPercentValues='1' showPercentageValues='1' showPercentInToolTip='1' showFCMenuItem='0' showNames='1' RotateNames='1' > <set name='H' value='101' color='9A6EB8' /> <set name='O' value='152' color='13FA08' /> <set name='O' value='153' color='10C040' /> <set name='O' value='154' color='6CAB32' /> </graph> Here's my HTML code : <script type="text/javascript" src="../FusionCharts/JSClass/FusionCharts.js"></script> <div id="divGraph" name="divGraph"> <div id="chartdiv" align="center">FusionCharts</div> <script type="text/javascript"> var myChart = new FusionCharts("../FusionCharts/Charts/Doughnut3D.swf", "Doughnut3D", "800", "600"); myChart.setDataURL("TEMP/SUPERSTAR_29U1206GB2844.xml"); myChart.render("chartdiv"); </script><br> </div> (Would it be because of set name="" instead of label=""???) Thank for the help
  2. Thanks it works. I had not the rights to open the access to the new files. Daniel