Search the Community

Showing results for tags 'IE server-side export'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  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 -----------------------------------------------