michellemabelle

Members
  • Content count

    1
  • Joined

  • Last visited

About michellemabelle

  • Rank
    Forum Newbie
  1. Charts Do Not Display In Ie9

    Below is my code to create html text. The chart display in firefox with no problem, but in IE9, nothing was generated. I'm using the latest fusioncharts XT version. Anyone can help? htm += "<html>"; htm += "<head>"; htm += "<title></title> <script type=\"text/javascript\" src=\"../Scripts/FusionCharts.js\">"; htm += "</head>"; htm += "<body bgcolor=\"#ffffff\">"; htm += "<script type=\"text/javascript\">"; htm += "FusionCharts.printManager.enabled(true);"; htm += "</script>"; htm += "<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width=\"750\" height=\"450\" id=\"" + name + "\" >"; htm += "<param name=\"movie\" value=\"../fusionChart/" + chart + "\" />"; htm += "<param name=\"FlashVars\" value=\"&dataURL=../xml/" + randomName + ".xml&chartWidth=750&chartHeight=450\" />"; htm += "<param name=\"quality\" value=\"high\" />"; htm += "<embed src=\"../FusionChart/" + chart + "\" flashVars=\"&dataURL=../xml/" + randomName + ".xml&chartWidth=750&chartHeight=450\" quality=\"high\" width=\"750\" height=\"450\" name=\"" + name + "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />"; htm += "</object>"; htm += "</body>"; htm += "</html>";