I am able to literally create a chart with a literal string for the xml data directly embedding into the object. However, when I try to set a reference to the object and utilize the setDataXMl method i get "Error in Loading data".
I have tried multiple different variations, it appears that setDataXML is undefined?
Any help would be most appreciated.
Here is the example. It is creating the object, but also I can not get the debug to work. However if i change my reference to the FusionCharts.js file it does not allow me to create the object, so it appears my links are working correctly.
<td class="head_center" colspan="3">
<div id="chart1div">
</div>
<script type="text/javascript">
var chart1 = new FusionCharts("FusionCharts/Column3D.swf", "chart1Id", "400", "300", "1", "1"); chart1.setDataXML(
"<chart><set label='A' value='10' /><set label='B' value='11' /></chart>");chart1.render(
"chart1div");
</script>
</td>