xixi

Members
  • Content count

    2
  • Joined

  • Last visited

Everything posted by xixi

  1. I am using the commercial version of FusionCharts XT (v3.2.2) Service Release 3 (Released on 12th March, 2012) I am using FusionCharts with a Java/J2EE Web application and execute server-side export by calling javascript function. In the IE (both IE7 and IE8, the problem occurs), the chart is rendered correctly in the web page, when the char is visible in the browser, executing server-side export is fast, but if the char is invisible in the browser(for example, there are some other contents at the head of the char), server-side exporting takes 3 minutes from the calling of "chart.exportChart()" on the javascript to start creating the image on the server. Why when the char is invisible, the export is slow, and how can I resolve the problem? Thanks. And the implementation is such as following ------------------------------------------------ javascript: var chart = getChartFromId("chart_id"); chart.exportChart(); web.xml: <servlet> <display-name>FCExporter</display-name> <servlet-name>FCExporter</servlet-name> <servlet-class>com.fusioncharts.exporter.servlet.FCExporter</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>FCExporter</servlet-name> <url-pattern>/FCExporter</url-pattern> </servlet-mapping> other files is also in the app: FusionCharts.HC.Charts.js FusionCharts.HC.js FusionCharts.js FusionChartsExportComponent.js fcexporterjdk1_4.jar fcexporthandlerjdk1_4.jar -----------------------------------------------
  2. I'm very sorry, may I did not describe my problem clearly , now describe it. In IE browser, in a more content page, chart is at the bottom of the page, chart rendering is completed, by dragging the scroll bar down, chart is normally seen in the screen. And then drag the scroll bar up until the chart is not visible on the screen, in this case, call "chart.exportChart ()" for server-side export on the javascript, exporting is very slow, it takes about 3 minutes. And in firefox browser, in the same situation exporting is faster. How to avoid the problem in IE browser, thank you very much.