Class CalculatedField
Represents an abstraction of a calculated field.
Inheritance
Inherited Members
Namespace: Telerik.Pivot.Core
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public abstract class CalculatedField : INamed
Constructors
CalculatedField()
Declaration
protected CalculatedField()
Properties
DisplayName
Gets the display-friendly name.
Declaration
public string DisplayName { get; set; }
Property Value
System.
|
Implements
Name
Gets the name of the calculated field.
Declaration
public string Name { get; set; }
Property Value
System.
|
Methods
CalculateValue(IAggregateValues)
Gets the calculated value.
Declaration
protected abstract AggregateValue CalculateValue(IAggregateValues aggregateValues)
Parameters
IAggregate Interface used to get summary aggregate values for all properties returned by Required |
Returns
Aggregate The calculated values. |
RequiredFields()
Gets all fields used in calculation.
Declaration
protected abstract IEnumerable<RequiredField> RequiredFields()
Returns
System. Enumerable of all property names used in calculation. |