montegobay64 Report post Posted September 22, 2009 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> Share this post Link to post Share on other sites
Rahul Kumar Report post Posted September 23, 2009 Hi montegobay64, Could you first please close the <set....> element tag like <set ..../> and try again? Share this post Link to post Share on other sites