montegobay64

Members
  • Content count

    1
  • Joined

  • Last visited

About montegobay64

  • Rank
    Forum Newbie
  1. Invalid xml data

    Using asp to pull in some simple value from a database - below are the calls and returns. The error states "invalid xml data" but I can see my variables listed in the string below but no chart... Any ideas?? <script type="text/javascript"> //Instantiate the Chart var chart_COMMISSIONS = new FusionCharts("Charts/Pie3D.swf", "COMMISSIONS", "700", "500", "0", "0"); //Provide entire XML data using dataXML method chart_COMMISSIONS.setDataXML("<chart caption='COMMISSIONS' subCaption='commission' pieSliceDepth='30' showBorder='1' formatNumberScale='0' numberSuffix='Dollars'><set label='one' value='111'><set label='one' value='111'><set label='one' value='111'></chart>"); //Finally, render the chart. chart_COMMISSIONS.render("COMMISSIONSDiv"); </script>