Back to Devexpress

SeriesAggregateFunction Enum

corelibraries-devexpress-dot-xtracharts-8dd0e85a.md

latest3.7 KB
Original Source

SeriesAggregateFunction Enum

Lists the values that specify the aggregate function used for a series.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum SeriesAggregateFunction
vb
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum SeriesAggregateFunction

Members

NameDescription
Default

The aggregate function is specified by the AggregateFunction property of the appropriate axis scale options.

| | None |

The aggregate function is not applied.

| | Average |

Aggregates data by calculating the average value for a selected numeric or date-time interval.

| | Sum |

Aggregates data by calculating the sum for a selected numeric or date-time interval.

| | Minimum |

Aggregates data by calculating the minimum value for a selected numeric or date-time interval.

| | Maximum |

Aggregates data by calculating the maximum value for a selected numeric or date-time interval.

| | Count |

Aggregates data by calculating the number of non-null values for a selected numeric or date-time interval.

| | Histogram |

Aggregates data by calculating the number of all points for a selected numeric or date-time interval.

| | Financial |

Aggregates financial data for a selected interval into a single open-high-low-close data point, as follows. The Open value of the aggregated point is the Open value of the first aggregated point, the High value - the maximum High value of aggregated points, the Low value - the minimum Low value of aggregated points, and the Close value - the Close value of the last aggregated point.

| | Custom |

Aggregates data using the custom CustomAggregateFunction calculator.

|

The following properties accept/return SeriesAggregateFunction values:

LibraryRelated API Members
Cross-Platform Class LibraryRadarSeriesViewBase.AggregateFunction
XYDiagram2DSeriesViewBase.AggregateFunction
XYDiagram3DSeriesViewBase.AggregateFunction
WinForms ControlsRadarSeriesViewBaseModel.AggregateFunction
XYDiagram2DSeriesViewBaseModel.AggregateFunction
XYDiagram3DSeriesViewBaseModel.AggregateFunction

Remarks

The values listed by this enumeration can be used to set the XYDiagram2DSeriesViewBase.AggregateFunction, XYDiagram3DSeriesViewBase.AggregateFunction or RadarSeriesViewBase.AggregateFunction property.

See Also

DevExpress.XtraCharts Namespace