Click or drag to resize

DataTableMultipleColumnProxyTransformToListOfXAndYColumn(DataColumn, String, Boolean) Method

Transforms the DataTableMultipleColumnProxy into a ListOfXAndYColumn, using ColumnX as x column, and the columns identified by identifier ColumnsV as y columns.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public ListOfXAndYColumn TransformToListOfXAndYColumn(
	DataColumn ColumnX,
	string ColumnsV,
	bool cloneTheProxies
)

Parameters

ColumnX  DataColumn
The column identifier of the x-column.
ColumnsV  String
The column identifier of the y-columns.
cloneTheProxies  Boolean
If true, the proxies in the resulting ListOfXAndYColumn are clones of the proxies in this instance. If false, the proxies are directly used from this instance. ATTENTION: use false only if the DataTableMultipleColumnProxy is not needed anymore!

Return Value

ListOfXAndYColumn
A ListOfXAndYColumn list.
See Also