I'm very new to FusionCharts (yesterday) and I'm having problems with it. I went through the 'Creating My First Chart' in the documentation and couldn't get it to work. After playing with it for hours, I've finally got the code listed below. The SWF file is in the same directory as the web page. I not I'm loading the data correctly because the alert shows me all of the data correctly.
<html>
<head>
<title>My First chart using FusionCharts</title>
</script>
</head>
<body>
<div id="chartContainer">
FusionCharts will load here!
</div>
<script type="text/javascript" src="./StCol3D3.js" ></script>
<script type="text/javascript">
alert(dataString);
var myChart = new FusionCharts("./Column3D.swf", "ChartId", "400", "300", "0", "0");
mychart.setXMLData ( dataString );
myChart.render("chartContainer");
</script>
</body>
</html>
Can somebody please tell what I'm doing wrong.
TIA - Jeff.