tnikola

Members
  • Content count

    1
  • Joined

  • Last visited

About tnikola

  • Rank
    Forum Newbie
  1. Hello, I am new with FusionCharts 3.0.6 and I need a sample how to save pie3d chart as image. I have latest version of FusionCharts.js and FusionCharts.dll<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Here is my code for building the chart: Public Function doChart() As String Dim str As String = "<chart imageSave='1' imageSaveURL='http://mydomain/a.aspx'>" & _ "<set label='test 1' value='23' />" & _ "<set label='test 2' value='33' />" & _ "<set label='test 3' value='75' />" & _ "<set label='test 4' value='34' />" & _ "</chart>" Return FusionCharts.RenderChart("../charts/Pie3D.swf", "", str, "pie3dchart", 300, 300, False, True, True) End Function The problem is how to take image from the request of my this particular page a.aspx and save this image to temporary folder on the HDD. Please provide some code or example(Code could be given on asp net, jsp or php) Any help is appreciated Thank you Nicholas