Hi Angie,
Thanks for the quick response.
I verified the steps you had provided.seems like i have set the flag to 1.
Here is my code snippet. it displays the chart in IE fine.
<html>
<head>
<title>My First chart using FusionCharts - Using JavaScript</title>
<script type="text/javascript" src="Charts/FusionCharts.js"></script>
<script type="text/javascript" src="Charts/highcharts.js"></script>
<script type="text/javascript" src="Charts/jquery.min.js"></script>
</head>
<body>
<div id="chartContainer">FusionCharts will load here!</div>
<script type="text/javascript">
//FusionCharts._fallbackJSChartWhenNoFlash();
var myChart = new FusionCharts( "Charts/Pie3D.swf","myChartId", "400", "300", "0", "1" );
myChart.setXMLUrl("Data.xml");
myChart.render("chartContainer");
</script>
</body>
</html>
data.xml
<chart showValues='1' valuePosition='auto' rotateValues='1' registerWithJS='1' caption='Monthly Revenue' subcaption='Month' primaryAxisOnLeft='0' yAxisName='Revenue' numberPrefix='$' > <set label='Jan' value='420000' /> <set label='Feb' value='910000' /> <set label='Mar' value='720000' valuePosition='bottom' /> <set label='Apr' value='550000' valuePosition='bottom' /> <set label='May' value='810000' valuePosition='above' /> <set label='Jun' value='510000' valuePosition='auto' /></chart>
Pls let me know any thoughts.