Click or drag to resize

ColumnPlotDataExchangeTableDataCollectColumnNamesFromIColumnPlotData Method

Collects the column names from the provided plot items and organizes them in groups (see ColumnNames), one group for each plot item. See remarks for why to organize in groups.

Namespace: Altaxo.Graph.Plot.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void CollectColumnNamesFromIColumnPlotData(
	IEnumerable<IColumnPlotData> columnPlotDataItems
)

Parameters

columnPlotDataItems  IEnumerableIColumnPlotData
The column plot data items to collect from.
Remarks
The names have to be organized in groups. The reason is that each plot item should use columns from a single group number only. Thus in order to determine whether a table can be used to replace the old table of all plot items, we need to know which column names belong together.
See Also