Thanks for the reply. I tried your suggestion in my JavaScript and it didnt change anything. I know about the showLabels attribute in the xml file. I would like to turn it on and off client side via JavaScript.
Im starting a fusion chart from JavaScript:
< script type="text/javascript">
var targetElement = document.getElementById("HiddenField");
var overallChart = new FusionCharts("Area2D.swf", "ChartId", "650", "200", "0", "1");
overallChart.setDataXML(targetElement.value);
overallChart.showLabels='1'; <---------------- This does not turn on the Labels.
overallChart.render("overall_chart");
< /script>