Class AggregateFunctions
Describes the supported aggregate functions available for LocalDataSourceProvider.
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
AggregateFunction
|
Count
Counts items.
Declaration
public static AggregateFunction Count { get; }
Property Value
AggregateFunction
|
Max
Computes the maximum.
Declaration
public static AggregateFunction Max { get; }
Property Value
AggregateFunction
|
Min
Computes the minimum.
Declaration
public static AggregateFunction Min { get; }
Property Value
AggregateFunction
|
Product
Computes the product.
Declaration
public static AggregateFunction Product { get; }
Property Value
AggregateFunction
|
StdDev
Estimates the standard deviation of a population based on a sample.
Declaration
public static AggregateFunction StdDev { get; }
Property Value
AggregateFunction
|
StdDevP
Estimates the standard deviation of a population based on the entire population.
Declaration
public static AggregateFunction StdDevP { get; }
Property Value
AggregateFunction
|
Sum
Computes the sum.
Declaration
public static AggregateFunction Sum { get; }
Property Value
AggregateFunction
|
Var
Estimates the variance based on a sample.
Declaration
public static AggregateFunction Var { get; }
Property Value
AggregateFunction
|
VarP
Estimates the variance based on the entire population.
Declaration
public static AggregateFunction VarP { get; }
Property Value
AggregateFunction
|