I maded the code that display the following:
Chart.
//Instantiate the Chart
var chart_productsales = new FusionCharts("/directory/Pie2D.swf", "productsales", "450", "300", "0", "0");
//Provide entire XML data using dataXML method
chart_productsales.setDataXML("")
//Finally, render the chart.
chart_productsales.render("productsalesDiv");
But only display "chart" text.
I can not use URLData and the examples for Pie charts are URL Method.
Thank you.