Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ScaleMode Enum

In This Article

Lists the values that specify the scale mode for an axis.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public enum ScaleMode

#Members

Name Description
Automatic

Identifies the automatic scale mode, meaning that data is automatically aggregated according to the selected AutomaticDateTimeScaleOptions.AggregateFunction or AutomaticNumericScaleOptions.AggregateFunction.

Manual

Identifies the manual scale mode, meaning that the ManualDateTimeScaleOptions.GridAlignment (ManualNumericScaleOptions.GridAlignment), ManualDateTimeScaleOptions.MeasureUnit (ManualNumericScaleOptions.MeasureUnit) and ManualDateTimeScaleOptions.AutoGrid (ManualNumericScaleOptions.AutoGrid) properties are in effect, and they should be manually defined.

Also, you can choose the aggregate function using the ManualDateTimeScaleOptions.AggregateFunction or ManualNumericScaleOptions.AggregateFunction property.

Continuous

Identifies the continuous scale mode, meaning data aggregation is disabled, and you can only change the grid alignment using the ContinuousDateTimeScaleOptions.GridAlignment or ContinuousNumericScaleOptions.GridAlignment properties.

See Also