XY Chart NET 3 Control Reference
ClearChartData Method

Use this method to clear all data from the internal chart data array.

Syntax
[Visual Basic]
Sub ClearChartData()
[C#]
void XYChartNETCtl.ClearChartData()
[C++]
void XYChartNet::XYChartNETCtl::ClearChartData()
       
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

With XYChartNETCtl1
   .ClearChartData()              'Clear all data
   .ChartData = newChartDataArray 'Set the new datapoints
   .Refresh()                     'Refresh required to refresh the chart with the new data 
End With
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

XYChartNETCtl1.ClearChartData();              //Clear all data
XYChartNETCtl1.ChartData = newChartDataArray  //Set the new datapoints
XYChartNETCtl1.Refresh();                     //Refresh required to refresh the chart with the new data 
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

XYChartNETCtl1->ClearChartData();              //Clear all data
XYChartNETCtl1->ChartData = newChartDataArray  //Set the new datapoints
XYChartNETCtl1->Refresh();                     //Refresh required to refresh the chart with the new data 
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.