Skip to main content
A newer version of this page is available. .

ScaleMode Enum

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

Namespace: DevExpress.Xpf.Charts

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

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