edulpn

Members
  • Content count

    2
  • Joined

  • Last visited

About edulpn

  • Rank
    Forum Newbie
  1. Saving chart as image C#

    Hey everybody! Since I'm usign fusion chart to generate my C# project's charts, i need to save it as an image, so i can place it on a html report. I figured out that the best way to do is saving the chart as an image, into the windows form application, and then put the image on image tag of the html report. if this is the best way to do, how can i save the chart as an image throu C# programming? if it isn't, how can i take a chart, feed with a xml string in a C# flash object (using callfunction() - v3 evaluation version), and put it in a html report without using any script, like PHP, ASP or JScript? Thanks for the help, Ed.
  2. C# .NET

    Hi everybody, Some time ago I started working with C# .NET ,and now, I need to use some Fusion Charts on a project. I had some experience with it, but using ASP .NET (not using the ShockWave Flash Object). I have the XML file, but now I can't show the chart on the form. Here it is the XML composition method: object[,] arrData = new object[6, 2]; public string geraGrafico() { //Store Name of Products arrData[0, 0] = "125Hz"; arrData[1, 0] = "250Hz"; arrData[2, 0] = "500Hz"; arrData[3, 0] = "1000Hz"; arrData[4, 0] = "2000Hz"; arrData[5, 0] = "4000Hz"; //Store sales data arrData[0, 1] = 2; arrData[1, 1] = 5; arrData[2, 1] = 3.5; arrData[3, 1] = 1; arrData[4, 1] = 10; arrData[5, 1] = -2; StringBuilder xmlData = new StringBuilder(); xmlData.Append("