Class AggregateFunctions
Describes the supported aggregate functions available for Local
Inheritance
Namespace: Telerik.Pivot.Core.Aggregates
Assembly: Telerik.Pivot.Core.dll
Syntax
public static class AggregateFunctions : Object
Properties
Average
Computes the average.
Declaration
public static AggregateFunction Average { get; }
Property Value
Count
Counts items.
Declaration
public static AggregateFunction Count { get; }
Property Value
Max
Computes the maximum.
Declaration
public static AggregateFunction Max { get; }
Property Value
Min
Computes the minimum.
Declaration
public static AggregateFunction Min { get; }
Property Value
Product
Computes the product.
Declaration
public static AggregateFunction Product { get; }
Property Value
StdDev
Estimates the standard deviation of a population based on a sample.
Declaration
public static AggregateFunction StdDev { get; }
Property Value
StdDevP
Estimates the standard deviation of a population based on the entire population.
Declaration
public static AggregateFunction StdDevP { get; }
Property Value
Sum
Computes the sum.
Declaration
public static AggregateFunction Sum { get; }
Property Value
Var
Estimates the variance based on a sample.
Declaration
public static AggregateFunction Var { get; }
Property Value
VarP
Estimates the variance based on the entire population.
Declaration
public static AggregateFunction VarP { get; }