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.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[TypeConverter(typeof(EnumTypeConverter))]
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum ScaleMode

Members

Name Description
Automatic

Identifies the automatic date-time scale mode, meaning that data is automatically aggregated according to the chosen ScaleGridOptionsBase.AggregateFunction.

Manual

Identifies the manual date-time scale mode, meaning that the DateTimeScaleOptions.GridAlignment and DateTimeScaleOptions.MeasureUnit properties are in effect, and they should be manually defined. Also, you can choose the aggregate function using the ScaleGridOptionsBase.AggregateFunction property.

Continuous

Identifies the continuous date-time scale mode, meaning data aggregation is disabled and you can only change the grid alignment using the DateTimeScaleOptions.GridAlignment property.

Related API Members

The following properties accept/return ScaleMode values:

Library Related API Members
Cross-Platform Class Library ScaleOptionsBase.ScaleMode
WinForms Controls ScaleOptionsBaseModel.ScaleMode

Remarks

The values listed by the ScaleMode enumeration are used to set the ScaleOptionsBase.ScaleMode property.

See Also