zawmn83

Members
  • Content count

    8
  • Joined

  • Last visited

About zawmn83

  • Rank
    Forum Newbie
  1. Problem With Multiple Export Server Side

    Do you mean if I try to export 8 charts with array like below, callback handler will call same as array sequence? e.g. chartarray index [0] will first, index[1] will second, ..., index[7] will be last ? myExportComponent.sourceCharts = chartarray; My requirement is to redirect to another page that download pdf/excel with chart images when the export process is finish all 8 charts. But now it is difficult to know what time all 8 charts are exported or not. Any solution? Thanks
  2. Problem With Multiple Export Server Side

    Hi Are you trying with 8 charts? I know FC_Exported callback, I just ask about how can I know the time that all 8 charts are completely exported. Is there any callback for this event ?
  3. Problem With Multiple Export Server Side

    My page includes 8 charts, I'm trying to export them all with FusionChartsExportObject by passing chart ID array. It is working in FF and Chrome. But not working well at IE8 and IE9. I handle FC_Exported function to display the export status to user, e.g. 1/8 Exported, 2/8 Exported, .... I use global javascript variable to count the exported image count. But with IE, most of the time, it is stop in the middle of export e.g. 4/8 or 5/8, only a few times it is finish export all. Is there any way to solve this IE export problem? And FC_Exported function is called when export finish for each chart. Is there any callback function that I can know when all charts are successfully exported to server ? I also try to change the code to download one chart by one with chartObject.exportChart(); funciton. But it is very slow to export each chart. about 5 minutes take to export 8 charts.
  4. Pie Chart: Labels Are Cut Off

    Hi Thanks for you reply. Does Fusion Chart has any plan to upgrade its logic to calculate the available space? According to my charts, it is clear to know this logic has weakness even for such simple 4 labels.
  5. Pie Chart: Labels Are Cut Off

    Hi It is ok to truncate when many data labels and very less space. Please check my sample attachment screens, there are only 4 labels and a lots of space to wrap the label. My system will embed this PIE chart in pdf file. So tool-tips are not able to see by user. Please help, It is urgent issue, my users are complaining about this. I couldn't answer why this happen.
  6. Pie Chart: Labels Are Cut Off

    I think manageLabelOverflow not working well. I'm using Fusion Chart 3.2 In my pie chart, there are only 4 labels, one at left, one at top, one at right and one at bottom. When I set manageLabelOverflow = 1, the left label is wrapped and display as: "Net Food Revenue, 52.24% " But the right label is truncated as Net Beverage Revenu... without wrapping. The full text of my right label is "Net Beverage Revenue, 47.76%" . Why isn't it wrapped as left side label. Please see attachment I also attach another case of label truncate.
  7. Y Axis Auto Scaling

    Same problem here, The max value in my graph is 2.35 and minimum value is zero, but the Y-Axis scale display 0,1,2,3,4,5. When I set adjustDiv="0", the Y Axis values change to 0, 0.6, 1.2, 1.8, 2.4, 3. I would like to get 0.0, 0.5, 1.0, 1.5, 2.0, 2.5, how can I get it? My values are also calculated from database, it may be change over 5.