Class SummaryPivotItem
This class is primarily for internal use. It is used to generate the rows and columns that hold summaries of PivotCalculations.
Inheritance
System.Object
SummaryPivotItem
Implements
System.IComparable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.PivotAnalysis.Base
Assembly: Syncfusion.PivotAnalysis.Base.dll
Syntax
public class SummaryPivotItem : IComparable
Constructors
SummaryPivotItem()
Declaration
public SummaryPivotItem()
Properties
ColIndex
Gets or sets the column index of this item.
Declaration
public int ColIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Keys
Gets or sets row/column key values for an indexed look-up of this item.
Declaration
public List<IComparable> Keys { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.IComparable> |
RowIndex
Gets or sets the row index of this item.
Declaration
public int RowIndex { get; set; }
Property Value
Type |
---|
System.Int32 |
Values
Gets or sets the list of calculations in the PivotItem.
Declaration
public List<SummaryBase> Values { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<SummaryBase> |
Methods
CompareTo(Object)
Compare the summary fields using the keys.
Declaration
public int CompareTo(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type |
---|
System.Int32 |
Implements
System.IComparable