Back to Devexpress

AggregateFunction Enum

corelibraries-devexpress-dot-xtracharts-f391d528.md

latest2.8 KB
Original Source

AggregateFunction Enum

Lists the values that specify the aggregate function used for an axis.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

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

Members

NameDescription
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 summary 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 high-low-open-close data point, so that the high value equals the highest value of all data points in this interval; the low value equals the lowest value of all data points; the open value equals the open value of the first data point and the close value equals the close value of the last data point.

| | Custom |

Aggregates data using the custom CustomAggregateFunction calculator.

|

The following properties accept/return AggregateFunction values:

LibraryRelated API Members
Cross-Platform Class LibraryScaleGridOptionsBase.AggregateFunction
WinForms ControlsScaleGridOptionsBaseModel.AggregateFunction

Remarks

The values listed by the AggregateFunction enumeration are used to set the ScaleGridOptionsBase.AggregateFunction property.

See Also

DevExpress.XtraCharts Namespace