Back to Devexpress

ChartSeriesAggregationMethod Enum

aspnetbootstrap-devexpress-dot-web-dot-bootstrap-15a2937a.md

latest2.4 KB
Original Source

ChartSeriesAggregationMethod Enum

Specifies how to aggregate series points.

Namespace : DevExpress.Web.Bootstrap

Assembly : DevExpress.Web.Bootstrap.v25.2.dll

NuGet Package : DevExpress.Web.Bootstrap

Declaration

csharp
public enum ChartSeriesAggregationMethod
vb
Public Enum ChartSeriesAggregationMethod

Members

NameDescription
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.

|

The following properties accept/return ChartSeriesAggregationMethod values:

Remarks

Series points get aggregated by individual aggregation intervals (BootstrapChartArgumentAxis.AggregationInterval). The following list describes available aggregation methods per series type:

Series typesAggregation methods
Line, Bar, Area, and ScatterAvg, Count, Max, Min, Sum, Custom
BubbleAvg, Custom
FinancialOhlc, Custom
RangeRange, Custom

See Also

DevExpress.Web.Bootstrap Namespace