erik

Members
  • Content count

    4
  • Joined

  • Last visited

About erik

  • Rank
    Forum Newbie
  1. I am using ScrollColumn2D chart and am trying to set the color of each dataset individually. When specifying the plotBorderColor as an attribute within the element everything works, but when I try it within the element it does not seem to have an effect. I also tried it within without luck. Can you not set the plotBorderColor in the element or am I overlooking something? Any assistance would be appreciated. Thanks, Erik
  2. Invalid XML Data

    Yes, I am all set now. Thank you for confirming. Have a good day! Erik
  3. Invalid XML Data

    OK, I have it. The double quotes in the <xml> line of data.xml messed things up when the dataXML parameter is written to the <EMBED> tag. Problem solved. Perhaps this can help someone else. Take care, Erik
  4. Invalid XML Data

    I have a file data.xml (attached) that I am using as a data source. When calling RenderChartHTML with strURL populated all works as expected and I get my chart. If I try to read in that same file and use it as strXML I get an "Invalid XML Data" error. I have stripped it down to only relevant lines. Here is the code behind: public string GetChartHtml() { TextReader tr = new StreamReader(Server.MapPath("data.xml")); String xmlStringFromFile = tr.ReadToEnd(); tr.Close(); //return FusionCharts.RenderChartHTML("/FusionCharts/Charts/MSColumn3D.swf", "data.xml", "", "chartDiv", "600", "300", false); return FusionCharts.RenderChartHTML("/FusionCharts/Charts/MSColumn3D.swf", null, xmlStringFromFile, "chartDiv", "600", "300", false); } If you could point to what I am doing incorrectly I would greatly appreciate it. Thanks, Erik data.xml