I have two methods that work together and they make a big double array (every 1/1,000,000 of a second, 5000 items) and this array should show in a Dundas chart. But, the chart is not updating. How can I get it to update?
Relavent code follows:
private void DrawChart(object[] Value)
{
try
{
//If needs to be invoked, invoke it then
//call the delegate
if (!chaIon.Disposing) //Check if it's in the process of being disposed
{
if (this.chaIon.InvokeRequired)
{
SetChartCallback d = new SetChartCallback(DrawChart);
this.BeginInvoke(d, Value); //asynchronous call
//this.BeginInvoke(d, Value); //synchronous call //Replaced this with above line
}
else
{
//If already invoked then update label with new value.
try
{
// Define some variables
int numberOfPointsInChart = Convert.ToInt32(txtDataCount.Text);
int numberOfPointsAfterRemoval = 1;
chaIon.Series["Series1"].Points.AddXY(Convert.ToDouble(Value[0]), Convert.ToDouble(Value[0]));
// Keep a constant number of points by removing them from the left
while (chaIon.Series[0].Points.Count > numberOfPointsInChart)
{
// Remove data points on the left side
while (chaIon.Series[0].Points.Count > numberOfPointsAfterRemoval)
{
chaIon.Series[0].Points.RemoveAt(0);
}
}
chaIon.Invalidate();
}
catch (Exception err)
{
MessageBox.Show(err.Message, "Error");
}
}
}
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
}
//every 1/500000S 5000 item occur in loop
private void axAdvAICtrl_OnFirstHalfBulkDataReady(object sender, AxAdvAILib._IAdvAIEvents_OnFirstHalfBulkDataReadyEvent e)
{
#region "Get Data"
try
{
object analogArray = e.analogArray;
long i;
if (analogArray != null)
{
float[] voltage;
voltage = (float[])analogArray;
for (i = 0; i < Convert.ToInt32(txtDataCount.Text) / 2; i++)
{
DataX = (object)voltage[i];
// Write Data To Manual file
ManualSavetoFile(voltage[i], (num / axAdvAICtrl.DataSampleRate));
if (!_stopChart)
{
_stopChart = true;
this.threadChart.Join();
this.threadChart = null;
DrawChart(new object[] { voltage[i], (num / axAdvAICtrl.DataSampleRate) });
}
//If thread is not running then start it.
else
{
_stopChart = false;
this.threadChart = new Thread(new ThreadStart(this.ThreadProcSafe));
this.threadChart.Start();
}
num++;
}
}
}
catch (Exception err)
{
threadChart.Abort();
MessageBox.Show(err.Message, "Error");
}
#endregion
}
//every 1/500000S 5000 item occur in loop
private void axAdvAICtrl_OnSecondHalfBulkDataReady(object sender, AxAdvAILib._IAdvAIEvents_OnSecondHalfBulkDataReadyEvent e)
{
#region "Get Data"
try
{
object analogArray = e.analogArray;
long i;
if (analogArray != null)
{
float[] voltage;
voltage = (float[])analogArray;
for (i = 0; i < Convert.ToInt32(txtDataCount.Text) / 2; i++)
{
DataX = (object)voltage[i];
// Write Data To Manual file
ManualSavetoFile(voltage[i], (num / axAdvAICtrl.DataSampleRate));
if (!_stopChart)
{
_stopChart = true;
this.threadChart.Join();
this.threadChart = null;
DrawChart(new object[] { voltage[i], (num / axAdvAICtrl.DataSampleRate) });
}
//If thread is not running then start it.
else
{
_stopChart = false;
this.threadChart = new Thread(new ThreadStart(this.ThreadProcSafe));
this.threadChart.Start();
}
num++;
}
}
}
catch (Exception err)
{
threadChart.Abort();
MessageBox.Show(err.Message, "Error");
}
#endregion
}
Full code too long for one code window, but you can see it here.
