netedk

Members
  • Content count

    2
  • Joined

  • Last visited

About netedk

  • Rank
    Forum Newbie
  1. Can we have scrollable bar charts in future? Also, how about 3D scrollable column charts?
  2. scroll charts issue

    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??