donbrookes

Members
  • Content count

    3
  • Joined

  • Last visited

About donbrookes

  • Rank
    Forum Newbie
  1. setDataXML

    I figure it out. I had a coding error in my XML, which was causing an append issue. Sorry if this caused any issues. We can delete this post.
  2. setDataXML

    I tried both ideas, but it still appends each time that code is executed. Is there a clear or reset method that i can call that will reset the control?
  3. setDataXML

    I read the post by MilesD, but i did not get a resoultion from your reply to him. His issue may be different, i am not sure. So here is my issue. I am using the VB control (1.0), which is based on 3.07. I am using 1 control on a form and i refresh it based on the settings and chart they select. I do this by building the XML and then giving the XML to the control using your setDataXML property. here is the code: FusionCharts1.setDataXML = f_workpapers.GraphXML FusionCharts1.chartType = f_workpapers.chartType It works great, but it keeps appending the data and not clearing the chart. Notes: f_workpapers.GraphXML returns a string that contains the xml for the chart. f_workpapers.chartType returns 12 in this case, because i am generating a Multi-series line chart.