Class CalculatedItem
Represents an abstraction of a calculated item.
Inheritance
Namespace: Telerik.Pivot.Core
Assembly: Telerik.Pivot.Core.dll
Syntax
public abstract class CalculatedItem : Object
Remarks
These items are added to GroupDescription and they create a new group with summary returned by the GetValue(IAggregateSummaryValues) method.
Constructors
CalculatedItem()
Declaration
protected CalculatedItem()
Properties
GroupName
Gets or sets the name of groups generated for this calculated item.
Declaration
public object GroupName { get; set; }
Property Value
System.Object
|
SolveOrder
Gets or sets the solve order of the calculated item.
Declaration
public int SolveOrder { get; set; }
Property Value
System.Int32
|
Remarks
The summary for coordinate participating in calculated items in both row and column will be calculated based on the calculated item with larger solve order.
Methods
GetValue(IAggregateSummaryValues)
Gets the value for this calculated item.
Declaration
protected abstract AggregateValue GetValue(IAggregateSummaryValues aggregateSummaryValues)
Parameters
IAggregateSummaryValues
aggregateSummaryValues
Interface used to get aggregate value based on group name. |
Returns
AggregateValue
AggregateValue for this calculated item. |
ToString()
Declaration
public override string ToString()
Returns
System.String
|