Hi There
On my production machine VS2010 all is working 100% copying to my IIS7 windows server 2008 r2 machine the chart refuses to display I will include my source code if this helps.
In the head section of my master File I have:
<script language="JavaScript" src="js/FusionCharts.js"></script>
this is correct as i have other js files also referenced here and they work.
In my actual rendering document which is all in vb and using a scriptmanager and updatepanel for ajax here is some code i use.
<div id="chartdiv" align="center" style="width:100%">
</div>
<asp:HiddenField ID="HiddenField_xml" runat="server" />
<script type="text/javascript">
function do_grph() {
var xmlss = document.getElementById("ctl00$ContentPlaceHolder1$TabContainer1$TabPanel6$HiddenField_xml").value;
var chart = new FusionCharts("Pie3D.swf", "ChartId", "600", "600", "0", "0");
chart.setDataXML(xmlss)
chart.render("chartdiv"); }
do_grph();
</script>
This all works 100% in development, the last line do_grph() has been put in for debugging but still nothing renders , any Ideas please help