Hi Team,
I am implementing multiple xml files in single jsp page.Code is attached below.
But the same code is not working in IE8 and works good in google chrome
Please check the same
<html>
<head>
<title>My First chart using FusionCharts XT</title>
<script type="text/javascript" src="FusionCharts/Charts/FusionCharts.js">
</script>
</head>
<body>
<div id="chartContainer">FusionCharts XT will load here!</div>
<script type="text/javascript"><!--
var myChart = new FusionCharts( "FusionCharts/Charts/SparkColumn.swf","myChartId", "200", "200", "0", "1" );
myChart.setXMLUrl("Charts1.xml");
myChart.render("chartContainer");
// -->
</script>
<div id="chartContainerCustSatisfaction" align="center">The chart
will appear within this DIV. This text will be replaced by the chart.</div>
<script type="text/javascript"><!--
var myChartcpi = new FusionCharts( "FusionCharts/Charts/SparkColumn.swf","myChartcpi1", "200", "200", "0", "1" );
myChartcpi.setXMLUrl("Charts2.xml");
myChartcpi.render("chartContainerCustSatisfaction");
// -->
</script>
<div id="myChartotifotif" align="center">The chart will appear
within this DIV. This text will be replaced by the chart.</div>
<script type="text/javascript"><!--
var myChartotif = new FusionCharts( "FusionCharts/Charts/SparkColumn.swf","myChartotif1", "200", "200", "0", "1" );
myChartotif.setXMLUrl("Charts3.xml");
myChartotif.render("myChartotifotif");
// -->
</script>
</body>
</html>
Regards,
Hameed