hi, the reason why i cannot upgrade to next version is that fusion charts 3 is used in an organization level and it can be upgraded only when the whole company upgrades. We are rolling out to IE 11 and hence i need to be sure this works. Do you know if we have a solution or it cant be done with this version of fusion charts?  
  
  
Below is the code sample i am using.  
This is my html :  
  
<script src="../JS/jquery.ui.datepicker.js" type="text/javascript"></script> 
 <script src="../../jquery/jquery-1.8.3.js" type="text/javascript"></script> 
    <script src="../../FusionCharts/FusionCharts.js" type="text/javascript"></script>
    <script src="../../FusionCharts/FusionChartsExportComponent.js" type="text/javascript"></script>
    <script type="text/javascript">
 
        function CallSuccess(res) {
            var str = res.toString().split(",");
            Maxdate = str[0];
            defaultDate = str[1];
            MinDate = str[2];
            var txtFrom = document.getElementById('<%=txtFrom.ClientID%>');
            var txtTo = document.getElementById('<%=txtTo.ClientID%>');
            $(function () {
 
                $('#<%=txtFrom.ClientID%>').datepicker({
                    showOn: "button",
                    buttonImage: "../blitzer/images/calendar.gif",
                    buttonImageOnly: true,
                    changeMonth: true,
                    changeYear: true,
                    dateFormat: 'ddMyy',
                    maxDate: new Date(Maxdate),
                    minDate: new Date(MinDate),
                    defaultDate: new Date(defaultDate),
                    setDate: new Date(defaultDate),
                    buttonText: "Click to view Calender",
                    onClose: function (dateText, inst) {
 
 
                    }
                });
}</script>
 
In my rendering, 
 
strChart = InfoSoftGlobal.FusionCharts.RenderChartHTML("../../FusionCharts/MSLine.swf", "", strXml, "Chrt", "100%", "250", false);
 
            strChart = strChart.Replace("<param name=\"allowScriptAccess\" value=\"always\" />\r\n", "<param name=\"allowScriptAccess\" value=\"always\" />\r\n<param name=\"WMode\" value=\"Transparent\" />\r\n");