Row

 

Use this property along with the Column and Data properties to return/set a data point value for a specific Profile.   Row indicates which data sample is to be returned/set for a specific Profile.

Value is an integer between 1 and 1,000,000 (the maximum number of samples per profile).   Default: 1.

NOTE:  An error is generated when reading/writing the Data value if the row value is not valid for the specified profile.

 

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    Column    Data    ChartData     ProfileData