Pivot table wrapper that calculates running value by row or column.
Inheritance Hierarchy
NReco.PivotData.RunningValuePivotTable
Namespace: NReco.PivotData
Assembly: NReco.PivotData.Extensions (in NReco.PivotData.Extensions.dll) Version: 1.6.1
Syntax
The RunningValuePivotTable type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | RunningValuePivotTable(IPivotTable, RunningValuePivotTable.Direction) |
Initializes a new instance of RunningValuePivotTable instance by specified IPivotTable and run direction.
|
![]() | RunningValuePivotTable(IPivotTable, RunningValuePivotTable.Direction, Int32) |
Initializes a new instance of RunningValuePivotTable instance by specified IPivotTable, run direction and measure index.
|
Properties
Name | Description | |
---|---|---|
![]() | ColumnKeys | |
![]() | Columns | |
![]() | PivotData | |
![]() | RowKeys | |
![]() | Rows |
Methods
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | GetValue | |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
![]() | UseAggregateFunction |
Use specified IAggregatorFactory as aggregator function for calculating running values.
|
Remarks
Examples
PivotTable originalPvtTbl; var runningTotalPvtTbl = new RunningValuePivotTable(originalPvtTbl, RunningValuePivotTable.Direction.Column );
See Also