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