Back to Devexpress

Chart3DControl.AggregateFunction Property

wpf-devexpress-dot-xpf-dot-charts-dot-chart3dcontrol-56d1a416.md

latest2.3 KB
Original Source

Chart3DControl.AggregateFunction Property

Gets or sets the function that is used to aggregate series points.

Namespace : DevExpress.Xpf.Charts

Assembly : DevExpress.Xpf.Charts.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public AggregateFunction AggregateFunction { get; set; }
vb
Public Property AggregateFunction As AggregateFunction

Property Value

TypeDescription
AggregateFunction

The aggregate function identifier.

|

Available values:

NameDescription
None

The aggregate function is not applied.

| | Average |

Aggregates data by calculating the average value 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.

| | Sum |

Aggregates data by calculating the summary 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 value of the first data point and the close value equals the value of the last data point.

| | Custom |

Aggregates data using the custom CustomAggregateFunction calculator.

|

See Also

Chart3DControl Class

Chart3DControl Members

DevExpress.Xpf.Charts Namespace