New to Telerik UI for WinFormsStart a free 30-day trial

Represents an abstraction of a calculated item.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
[DataContract]
public abstract class CalculatedItem

Inheritance: objectCalculatedItem

Constructors

C#
protected CalculatedItem()

Properties

Gets or sets the name of groups generated for this calculated item.

C#
[DataMember]
public object GroupName { get; set; }

Gets or sets the solve order of the calculated item.

C#
[DataMember]
public int SolveOrder { get; set; }
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

Gets the value for this calculated item.

C#
protected abstract AggregateValue GetValue(IAggregateSummaryValues aggregateSummaryValues)
Parameters:aggregateSummaryValuesIAggregateSummaryValues

Interface used to get aggregate value based on group name.

Returns:

AggregateValue

AggregateValue for this calculated item.

C#
public override string ToString()
Returns:

string

Overrides: object.ToString()