File "JSExample.html"

Full Path: /home/analogde/www/Android/FusionChartsFree/Code/DrillDown/JSExample.html
File size: 646 bytes
MIME-type: text/html
Charset: utf-8

<html>
<head>
	<title>JavaScript Link Example</title>
	<script language="JavaScript" src="../FusionCharts/FusionCharts.js"></script>
	<SCRIPT LANGUAGE="JavaScript">
	<!--
		function myJS(myVar){
		window.alert(myVar);
		}
	//-->
</SCRIPT>
</head>

<body bgcolor="#ffffff">

<div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>
   <script type="text/javascript">
	var myChart = new FusionCharts("../FusionCharts/FCF_Column2D.swf", "myChartId", "500", "300");
	myChart.setDataURL("JSExample.xml");
	myChart.render("chartdiv");
   </script>

</body>
</html>