Interface IAggregateResultProvider
This interface provides access to the IGroups and intermediate AggregateValues accumulated during a pivot grouping process.
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public interface IAggregateResultProvider
Properties
Root
A coordinate with the GrandTotal root IGroups.
Declaration
Coordinate Root { get; }
Property Value
Coordinate
|
Methods
GetAggregateResult(Int32, Coordinate)
Gets the AggregateValue for the AggregateDescriptionBase at index aggregateIndex
for the row and column IGroups defined by groups
.
Declaration
AggregateValue GetAggregateResult(int aggregateIndex, Coordinate groups)
Parameters
System.Int32
aggregateIndex
The index of the AggregateDescriptionBase for which an AggregateValue should be retrieved. |
Coordinate
groups
A Coordinate of the IGroups we want to retrieve value for. |
Returns
AggregateValue
|