Click or drag to resize

DataTableXYColumnProxy(DataTable, DataColumn, DataColumn, IAscendingIntegerCollection) Constructor

Initializes a new instance of the DataTableXYColumnProxy class. The table and group number of this instance are set, but no columns are set with this constructor.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public DataTableXYColumnProxy(
	DataTable table,
	DataColumn xColumn,
	DataColumn yColumn,
	IAscendingIntegerCollection? selectedDataRows = null
)

Parameters

table  DataTable
The underlying table.
xColumn  DataColumn
The x-column that belongs to the y-column.
yColumn  DataColumn
The y-column.
selectedDataRows  IAscendingIntegerCollection  (Optional)
The selected data rows. If all data rows should be included, this argument can be null.
Exceptions
ExceptionCondition
ArgumentNullExceptiontable must not be null.
See Also