Fel

Members
  • Content count

    6
  • Joined

  • Last visited

  • Days Won

    1

About Fel

  • Rank
    Forum Newbie
  1. Column chart data labels alignment

    Hi, Im using Flash charts. I'd tried your suggestions, but data labels are still mis-align. Please find attach JSON data.data.txt
  2. Hi, How can I align labels on data? Please see image for more details.
  3. Auto Save Image

    Hi, I understand. Is there a way where you can do both "save" and "download" as an exportAction attribute? Thanks
  4. Auto Save Image

    Hi, Is there a way where a chart image is automatically save at server side and at the same time when you right click the chart you can still save the image? My impression is that you can't do both at the same time. I'd tried saving the image automatically, it did save the image at server. But when I do right-click->save as jpg in the chart it does nothing. The pop-up window that lets you choose where to save is not opening. I was able to show the pop-up window after right-click->save as jpg but the chart is not save automatically at server when generated. Thanks
  5. Saving Chart To Image

    Hi, Thanks for the info. But still having trouble creating the image. Do you have a sample script for this? Thanks
  6. Saving Chart To Image

    Hi, Can someone help me? I want to do something like this: -- generate a chart and after generating create an image snapshot of the chart that is saved as a jpeg format in the server directory. in other words, everytime a chart is generated their is a corresponding image file in the server. I have a chart generated thru this code: var graphType = '../charts/MSBar3D.swf'; var graphWidth = '600'; var graphHeight = '550'; $("#myChart2Container").insertFusionCharts({ swfUrl: graphType, width: graphWidth, height: graphHeight, dataFormat: "json", dataSource: json.html, }); now, what to do to create those images? Thanks.