Column

 

Use this property along with the Row and Data properties to return/set a data point value for a specific Profile.   Column indicates which type of data (X or Y) is to be returned/set for a specific Profile.

Value is an integer between 1 and (2 * NumProfiles).   Default: 1.

 

Example

XYChartCtrl.NumProfiles = 5       'Set the number of profiles to plot to 5

XYChartCtrl.Column = 5            'Set the column to 5, i.e. X-data for Profile 3
XYChartCtrl.Row = 3               'Set the row to 3, i.e. 3rd sample X-data for Profile 3
doubleValue = XYChartCtrl.Data    'Return the data at (Row, Column) cell location

XYChartCtrl.Column = 5            'Set the column to 5, i.e. X-data for Profile 3
XYChartCtrl.Row = 3               'Set the row to 3, i.e. 3rd sample X-data for Profile 3
XYChartCtrl.Data = 43.5           'Set the data at (Row, Column) cell location to 43.5

XYChartCtrl.Refresh               'Refresh required to update chart with changes made

 

See Also

Properties    Row    Data    ChartData     ProfileData