Skip to main content

ManualNumericScaleOptions.AggregateFunction Property

Gets or sets the function that is used to aggregate numeric axis data when one of the AxisX2D.NumericScaleOptions, or CircularAxisX2D.NumericScaleOptions properties is set to ManualNumericScaleOptions.

Namespace: DevExpress.Xpf.Charts

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

#Declaration

[XtraSerializableProperty]
public AggregateFunction AggregateFunction { get; set; }

#Property Value

Type Description
AggregateFunction

An AggregateFunction enumeration value.

#Remarks

The image below shows numeric data aggregation in the Manual scale mode using the default Average function.

AutomaticNumeric_AverageFunction

NOTE

The AggregateFunction property is set to AggregateFunction.Average by default.

To disable numeric data aggregation, set the AggregateFunction property to AggregateFunction.None.

See Also