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.1.dll

Declaration

[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
[TypeConverter(typeof(EnumTypeConverter))]
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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ScaleMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also