hi,here is a problem need your help!
1. when I run the following code in chrome or IE,appear the problem reference the attachments picture;
2. or you have another way to capture the click event on the histogram
Looking forward to your help...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Capture the Click event</title>
<script language="javascript" src="FusionCharts/FusionCharts.js"></script>
<script type="text/javascript">
function myJS(){
alert("hello World");
}
</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_Column3D.swf","mychartID","600","500");
myChart.setDataXML('<graph caption="sale bar for each month" xAxisName="Answer Options" yAxisName="Test Result" showNames="1" decimalPrecision="0" formatNumberScale="0"><set name="A" value="12" color="AFD8F8" link="JavaScript:alert(1);"/><set name="B" value="13" color="F6BD0F"/><set name="C" value="6" color="8BBA00"/><set name="D" value="20" color="FF8E46"/></graph>');
myChart.render("chartdiv");
</script>
</body>
</html>