MarKel

Members
  • Content count

    1
  • Joined

  • Last visited

About MarKel

  • Rank
    Forum Newbie
  1. Hello, I think I found a few bugs, I hope someone can help me with it. First of all, I use the newest version of FusionCharts v3.05 and Internet Explorer (version: 7.0.5730.11) and Firefox (version 2.0.0.11) Bug 1 In Internet Explorer I do the following steps: > you save an image > click on a link in the chart Then Internet Exploror throws an error like: Unable to download, undefined error Bug 2 When unloading a page with a FusionChart on it, Internet Explorer doesn't respond for like 30 seconds and the throws an error saying: Out of memory at line: 56 I figured that you can fix this by downloading the latest version of the flash-player from adobe but users may also have an older version of the flash-player. Bug 3 This bug also shows up in Firefox but only when using an Pie3d chart. When using the FC_Rendered Javascript function to call the setDataXml function, the save as image function doesn't work. The progressbar appears saying Capturing data but it doesn't. I've included an example below to show the problem. (modified from the pie3d example in the gallery directory of the FC download) Thats all. Except for this i'm very happy with FusionCharts. Thanks <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>FusionCharts v3 Documentation</title> <link rel="stylesheet" href="../Contents/Style.css" type="text/css" /> <script language="JavaScript" src="../JSClass/FusionCharts.js"></script> <script type="text/javascript"> function FC_Rendered(DOMId){ //If it's our required chart (Piechart) if (DOMId=="ChartId"){ chart.setDataXML("<chart palette='4' imageSave='1' imageSaveURL='../ImageSaving/FusionChartsSave.php'><set label='France' value='17' /><set label='India' value='12' /><set label='Brazil' value='18' /><set label='USA' value='8' isSliced='1'/></chart>"); return; } } </script> </head> <body> <div id="chartdiv" align="center">FusionCharts.</div> <script type="text/javascript"> var chart = new FusionCharts("../Charts/Pie3D.swf", "ChartId", "500", "300", "0", "1"); chart.setDataXML("<chart></chart>"); chart.render("chartdiv"); </script> </body> </html>