davesquire

Members
  • Content count

    3
  • Joined

  • Last visited

About davesquire

  • Rank
    Forum Newbie
  1. I think that I may have figured it out! And, if I'm right, then it is a FusionCharts bug. If I remove the colon characters (':') from the ChartId, then it works. So, in my previous example I had the chart id as, "simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorChart" which is a JSF id. When I change it to anything withOUT the :'s then it works. Now I'll just try to get rid of the colons in that id in my JSF application. If this is a FusionCharts bug, I would love to hear from FusionCharts about when a fix could be expected. Thank you! Dave
  2. I have done further testing and simplified the problem. Here is the html that will create the problem: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Simple FusionCharts Version 3.2 Test</title> <script type="text/javascript" src="FusionCharts.js"></script> <script type="text/javascript"> function DrawFusionChart(swfUrl, chartId, width, height, data, chartDivId) { var myChart = new FusionCharts(swfUrl, chartId, width, height, "0", "0"); myChart.setDataXML(data); myChart.setTransparent(); myChart.render(chartDivId); }; </script> </head> <body> <h1>FusionCharts Version 3.2</h1> <div id="simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorChartArea"> <div id="simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorTitle"> <span class="widgetTitle">Most Recent Simulation</span> </div> <div id="simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorChart_ChartDiv" align="center"></div> <script type="text/javascript"> DrawFusionChart("Column3D.swf", "simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorChart", "300", "200", "<chart caption='Simulation Results (N=50)' xAxisName='Product' yAxisName='Share of Preference' numberSuffix='%25' labelDisplay='stagger' showExportDataMenuItem='1' decimals='1' exportEnabled='1' exportAtClient='0' exportAction='download' exportFileName='SimulatorChart' exportHandler='/s/FCExporter.jsp' forceDecimals='1'><set label='NONE' value='100.0'></set></chart>", "simulatorChartWidgetSubview:simulatorChartWidgetForm:simulatorChart_ChartDiv"); </script> </div> </body> </html> Like I mentioned earlier, this exact test works in IE 8 on XP and Vista, Fire Fox, Chrome, and Safari. But it does NOT work using IE 8 on Windows 7. Any help would be greatly appreciated! Thank you, Dave
  3. I have been running my application using Fusion Charts version 3.1 for a while now. I love them! Now I'm trying to upgrade to version 3.2 so that they will work on iPad. But when I try to open the page with IE 8 on Windows 7, I get the following error: User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E) Timestamp: Fri, 12 Nov 2010 22:26:30 UTC Message: Invalid argument. Line: 15 Char: 33764 Code: 0 URI: https://server/s/FusionCharts/FusionCharts.js It seems to only happen on charts where I am setting the clickURL attribute. It works on IE 8 in XP and Vista. Only on Windows 7 do we see this error. Has anyone seen this error? Any ideas as to how I can resolve this? Thank you very much! Dave