Click or drag to resize

DataTablesAggregationDataSourceAggregateDataFromTableColumn Method

Aggregates values from a data column across all rows and groups them by the configured clustered properties. Collected values per group are added to aggregationResults under an DataTablesAggregationDataSourceAggregationKey

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void AggregateDataFromTableColumn(
	DataTable table,
	string columnName,
	Dictionary<DataTablesAggregationDataSourceAggregationKey, List<AltaxoVariant>> aggregationResults
)

Parameters

table  DataTable
The source table containing the data column.
columnName  String
The name of the column to aggregate.
aggregationResults  DictionaryDataTablesAggregationDataSourceAggregationKey, ListAltaxoVariant
A dictionary that collects aggregation lists per aggregation key; entries will be created if missing.
See Also