Jump to content
Software FX Community

lilatracy

Members
  • Posts

    11
  • Joined

  • Last visited

lilatracy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. When using personized chart first I save my chart settings with save in the toolbox. If I want to load these settings I got an Error in VS2005 OjectDisposedException with additionl information: Cannot access a disposed object.Object name: 'a'. What is the reason for this?
  2. If I press my refresh button then there will be the following items: Call readDataFromDatabase Chart1.Data.Clear() If Not bDBErr Then Chart1.DataSource = ds.Tables(0) But if I do it like this there will be an Error: ArgumentOutOfRangeException with the following description Specified argument was out of the range of valid values.Parameter name: series So what is wrong?
  3. Hi I think we have the same problem. At the moment it helps me: Chart1.Reset() Chart1.DataSource = ds.Tables(0) After this you'll have the problem, that you must relaod the Chartsettings, because after Chart.Reset you'll have the chart with default settings.
  4. I tried it and the reaction is: No Data Available in the chart Box. Chart1.Data.Clear(); is the only command when I press my refresh button!
  5. I use Chartfx in an application that shows data from a database. Values are logged into database every few seconds by other software. The chart should be refreshed time after time by pressing a button. How should I do this? When I press the button: - I reset the chart with chart1.reset - I create a new Dataset out of the database and bind it to the Chart with: Chart1.DataSource = ds.Tables(0) . <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> But chart1.reset isn't the right usage for this, isn't it? Because all chart settings will be lost. If I use only chart1.refresh I get the VisualStudio-Error message: ArgumentOutOfRangeException was unhandled: Specified argument was out of the range of valid values Parameter name: series. What is wrong? Can you explain to me?
×
×
  • Create New...