Interface IPivotResults
This interface provides access to the IGroups and Aggregate
Inherited Members
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public interface IPivotResults : IAggregateResultProvider
Properties
AggregateDescriptions
A read-only collection of the IAggregate
Declaration
IReadOnlyList<IAggregateDescription> AggregateDescriptions { get; }
Property Value
System.
|
ColumnGroupDescriptions
A read-only collection of the Group
Declaration
IReadOnlyList<GroupDescription> ColumnGroupDescriptions { get; }
Property Value
System.
|
FilterDescriptions
A read-only collection of the Filter
Declaration
IReadOnlyList<FilterDescription> FilterDescriptions { get; }
Property Value
System.
|
RowGroupDescriptions
A read-only collection of the Group
Declaration
IReadOnlyList<GroupDescription> RowGroupDescriptions { get; }
Property Value
System.
|
Methods
GetAggregateResult(Int32, IGroup, IGroup)
Gets the AggregateValue for the AggregateaggregateIndex
for the row
and column
IGroups.
Declaration
AggregateValue GetAggregateResult(int aggregateIndex, IGroup row, IGroup column)
Parameters
System. The index of the Aggregate |
IGroup row |
IGroup
column
An IGroup from the Root's Column |
Returns
Aggregate Null or Aggregate |
GetUniqueFilterItems(Int32)
Returns the unique items generated for FilterDescription located at index filterIndex
.
Declaration
IEnumerable<object> GetUniqueFilterItems(int filterIndex)
Parameters
System. The FilterDescription index. |
Returns
System. The unique items. |
GetUniqueKeys(PivotAxis, Int32)
Returns the unique keys generated for the GroupDescription located at
Declaration
IEnumerable<object> GetUniqueKeys(PivotAxis axis, int index)
Parameters
Pivot The axis. |
System. The GroupDescription index. |
Returns
System. The unique keys. |