andrei Report post Posted March 30, 2011 Hi, I have the following problem: My chart is being refreshed every 5 sec, the chart export time is bigger then 5 sec, so I need to start / stop the refresh when the export begins/ends. I'm using server side exporting and the export is done via JS: function saveChartAsImg() { var chartObject = getChartFromId(chartId); if( chartObject.hasRendered() ) { chartObject.exportChart({exportCallback : 'saveChartAsImgCallback'}); } } My XML looks has the options: "exportEnabled", "1" "exportAction", "download" "exportShowMenuItem", "0" I need the "exportAction" set to "download" but then the callback will not work anymore. What sholud I do ? Thanks in advance ! :D Share this post Link to post Share on other sites