Initializes new instance of PivotData with specified dimensions, aggregator, lazy totals mode and processes specified data.
Namespace: NReco.PivotData
Assembly: NReco.PivotData (in NReco.PivotData.dll) Version: 1.4.1
Syntax
public PivotData( string[] dimensions, IAggregatorFactory aggregator, IEnumerable<IDictionary<string, Object>> data, bool lazyTotals )
Parameters
- dimensions
- Type: SystemString
dimensions configuration (array of dimension elements) - aggregator
- Type: NReco.PivotDataIAggregatorFactory
measure aggregators factory - data
- Type: System.Collections.GenericIEnumerableIDictionaryString, Object
data represented by dictionary enumeration - lazyTotals
- Type: SystemBoolean
if true totals are calculated on-the-fly when accessed for the first time
See Also