hi,
I am not able to view the data of the chart, that I have created. I have just followed the steps given at http://docs.fusioncharts.com/charts/. The only change that i have done is keep the xml in a separate file instead of entering it in the html file.
This is my html file:
<html>
<head>
<title>My First chart using FusionCharts</title>
<script type="text/javascript" src="FusionCharts/FusionCharts.js">
</script>
</head>
<body>
<div id="chartContainer">FusionCharts XT will load here!</div>
<script type="text/javascript"><!--
var myChart = new FusionCharts( "FusionCharts/StackedColumn3D.swf",
"myChartId", "400", "300", "0", "1" );
myChart.setXMLUrl("MSData.xml");
myChart.render("chartContainer");
// -->
</script>
<input onclick = "alert(FusionCharts('myChartId').getDataAsCSV())" type="button" value="Get CSV Data from chart">
</body>
</html>