Class
AggregateFunctions

Describes the supported aggregate functions available for LocalDataSourceProvider.

Definition

Namespace:Telerik.Pivot.Core.Aggregates

Assembly:Telerik.Pivot.Core.dll

Syntax:

cs-api-definition
public static class AggregateFunctions

Inheritance: objectAggregateFunctions

Properties

Average

Computes the average.

Declaration

cs-api-definition
public static AggregateFunction Average { get; }

Property Value

AggregateFunction

Count

Counts items.

Declaration

cs-api-definition
public static AggregateFunction Count { get; }

Property Value

AggregateFunction

Max

Computes the maximum.

Declaration

cs-api-definition
public static AggregateFunction Max { get; }

Property Value

AggregateFunction

Min

Computes the minimum.

Declaration

cs-api-definition
public static AggregateFunction Min { get; }

Property Value

AggregateFunction

Product

Computes the product.

Declaration

cs-api-definition
public static AggregateFunction Product { get; }

Property Value

AggregateFunction

StdDev

Estimates the standard deviation of a population based on a sample.

Declaration

cs-api-definition
public static AggregateFunction StdDev { get; }

Property Value

AggregateFunction

StdDevP

Estimates the standard deviation of a population based on the entire population.

Declaration

cs-api-definition
public static AggregateFunction StdDevP { get; }

Property Value

AggregateFunction

Sum

Computes the sum.

Declaration

cs-api-definition
public static AggregateFunction Sum { get; }

Property Value

AggregateFunction

Var

Estimates the variance based on a sample.

Declaration

cs-api-definition
public static AggregateFunction Var { get; }

Property Value

AggregateFunction

VarP

Estimates the variance based on the entire population.

Declaration

cs-api-definition
public static AggregateFunction VarP { get; }

Property Value

AggregateFunction