Skip to main content
A newer version of this page is available. .

BootstrapChartAggregationSettings.Method Property

Specifies how to aggregate series points.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

[DefaultValue(ChartSeriesAggregationMethod.NotSet)]
public ChartSeriesAggregationMethod Method { get; set; }

Property Value

Type Default Description
ChartSeriesAggregationMethod **NotSet**

A ChartSeriesAggregationMethod enumeration value.

Available values:

Name Description
NotSet

The default aggregation method for the corresponding series type.

Avg

Calculates the average of all point values in an interval.

Count

Calculates the number of points in an interval.

Max

Calculates the maximum point value in an interval.

Min

Calculates the minimum point value in an interval.

Ohlc

Calculates the first open, last close, minimum low, and maximum high value in an interval.

Range

Calculates the range of values in an interval.

Sum

Calculates the sum of all point values in an interval.

Custom

Applies a custom aggregate function specified in the BootstrapChartAggregationSettings.OnCalculate property.

Property Paths

You can access this nested property as listed below:

Show 31 property paths
Object Type Path to Method
BootstrapChartAreaSeries
.Aggregation.Method
BootstrapChartAreaSeriesBase
.Aggregation.Method
BootstrapChartBarSeries
.Aggregation.Method
BootstrapChartBarSeriesBase
.Aggregation.Method
BootstrapChartBubbleSeries
.Aggregation.Method
BootstrapChartCandleStickSeries
.Aggregation.Method
BootstrapChartCommonSeries
.Aggregation.Method
BootstrapChartFinancialSeriesBase
.Aggregation.Method
BootstrapChartFullStackedAreaSeries
.Aggregation.Method
BootstrapChartFullStackedBarSeries
.Aggregation.Method
BootstrapChartFullStackedLineSeries
.Aggregation.Method
BootstrapChartFullStackedSplineAreaSeries
.Aggregation.Method
BootstrapChartFullStackedSplineSeries
.Aggregation.Method
BootstrapChartLineSeries
.Aggregation.Method
BootstrapChartPointSeriesBase
.Aggregation.Method
BootstrapChartRangeAreaSeries
.Aggregation.Method
BootstrapChartRangeBarSeries
.Aggregation.Method
BootstrapChartRangeSeriesBase
.Aggregation.Method
BootstrapChartScatterSeries
.Aggregation.Method
BootstrapChartSeries
.Aggregation.Method
BootstrapChartSeriesBase
.Aggregation.Method
BootstrapChartSplineAreaSeries
.Aggregation.Method
BootstrapChartSplineSeries
.Aggregation.Method
BootstrapChartStackedAreaSeries
.Aggregation.Method
BootstrapChartStackedBarSeries
.Aggregation.Method
BootstrapChartStackedLineSeries
.Aggregation.Method
BootstrapChartStackedSplineAreaSeries
.Aggregation.Method
BootstrapChartStackedSplineSeries
.Aggregation.Method
BootstrapChartStepAreaSeries
.Aggregation.Method
BootstrapChartStepLineSeries
.Aggregation.Method
BootstrapChartStockSeries
.Aggregation.Method
See Also