Sign in to follow this  
Lee jung ho

Drag Nod getXMLData() error

Recommended Posts

<div id="chartdiv" align="center"> FusionCharts. </div>

  <script type="text/javascript">

var chart = new FusionCharts("../Charts/DragNode.swf", "NodeChart", "600", "450", "0", "1");

chart.setDataURL("Data/DragNode4.xml");

chart.render("chartdiv");

 

chart = getChartFromId('NodeChart');

if(chart ==null)

 alert("null");

else{

 alert("not null");

 var xmlRtn = chart.getXMLData();

 chart.setDataXML(xmlRtn);

 chart.render("chartdiv");

 </script>

Error message : chart.getXMLData is not a function

why getXMLData() function error?

Share this post


Link to post
Share on other sites
Lee jung ho (3/19/2009)
<div id="chartdiv" align="center"> FusionCharts. </div>

  <script type="text/javascript">

var chart = new FusionCharts("../Charts/DragNode.swf", "NodeChart", "600", "450", "0", "1");

chart.setDataURL("Data/DragNode4.xml");

chart.render("chartdiv");

 

chart = getChartFromId('NodeChart');

if(chart ==null)

 alert("null");

else{

 alert("not null");

 var xmlRtn = chart.getXMLData();

 chart.setDataXML(xmlRtn);

 chart.render("chartdiv");

 </script>

Error message : chart.getXMLData is not a function

why getXMLData() function error?

 

I also face that prob

anyone can help?

 

"getXMLData() " is not available in free version?

Edited by Guest

Share this post


Link to post
Share on other sites
Guest Rajroop

Hey,

 

I'm afraid,you are correct. The getXMLData() function is not available in free version. :(

Edited by Guest

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this