I am trying to use a scroll chart (ScrollColumn2D.swf) with foll. xml - but I keep getting "No data to display" message.
My XML
<chart palette='2' bgcolor='FFFFFF' caption='' subCaption='' yaxisname='recordcount' xaxisname='PropertyName' rotateNames='1' hovercapborder='000000' numdivlines='4'> <set name='Crowne Plaza Los Angeles Harbor Hotel' value='10' alpha='70' /> <set name='Four Points by Sheraton - Ann Arbor' value='4' alpha='70' /> </chart>
This code is from Fusion Charts v2. I am now migrating to v3.
The code I am using in html page is:
<script type="text/javascript">
var chart = new FusionCharts("../Charts/Column2D.swf", "ChartId", "500", "300", "0", "0");
chart.setDataURL("Data/test.xml");
chart.render("chartdiv");
</script> Any idea what could be wrong here??