I have an XML feed that I am trying to show in a Fusion Chart, and I am having problems getting it to show. It works great if I save the feed, then send the chart that URL, but when I send it the feed URL, I get "Error in loading data"
The feed URL is:
http://www.mysource....ications&pid=32
This is the code I am using:
<script type="text/javascript">
var chart = new FusionCharts("http://www.mysource.coop/FusionCharts/MSCombi3D.swf", "ChartId", "400", "300", "0", "0");
chart.setDataURL("http://www.mysource.coop/DesktopModules/XModPro/Feed.aspx?xfd=CD_Communications&pid=32");
chart.render("chartdiv");
</script>
I am thinking I need to use something other than "setDataURL", but I'm not sure what else to use.