ClassCalculatedItem
Class
Represents an abstraction of a calculated item.
Definition
Namespace:Telerik.Pivot.Core
Assembly:Telerik.Pivot.Core.dll
Syntax:
cs-api-definition
[DataContract]
public abstract class CalculatedItem
Inheritance: objectCalculatedItem
Constructors
CalculatedItem()
Declaration
cs-api-definition
protected CalculatedItem()
Properties
GroupName
Gets or sets the name of groups generated for this calculated item.
Declaration
cs-api-definition
[DataMember]
public object GroupName { get; set; }
Property Value
SolveOrder
Gets or sets the solve order of the calculated item.
Declaration
cs-api-definition
[DataMember]
public int SolveOrder { get; set; }
Property Value
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
cs-api-definition
protected abstract AggregateValue GetValue(IAggregateSummaryValues aggregateSummaryValues)
Parameters
aggregateSummaryValues
Interface used to get aggregate value based on group name.
Returns
AggregateValue for this calculated item.