New to Telerik UI for WinFormsStart a free 30-day trial

Describes the supported aggregate functions available for LocalDataSourceProvider.

Definition

Namespace:Telerik.Pivot.Core.Aggregates

Assembly:Telerik.WinControls.PivotGrid.dll

Syntax:

C#
public static class AggregateFunctions

Inheritance: objectAggregateFunctions

Properties

Computes the average.

C#
public static AggregateFunction Average { get; }

Counts items.

C#
public static AggregateFunction Count { get; }

Computes the maximum.

C#
public static AggregateFunction Max { get; }

Computes the minimum.

C#
public static AggregateFunction Min { get; }

Computes the product.

C#
public static AggregateFunction Product { get; }

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

C#
public static AggregateFunction StdDev { get; }

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

C#
public static AggregateFunction StdDevP { get; }

Computes the sum.

C#
public static AggregateFunction Sum { get; }

Estimates the variance based on a sample.

C#
public static AggregateFunction Var { get; }

Estimates the variance based on the entire population.

C#
public static AggregateFunction VarP { get; }