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

Axis.AutoScaleBreaks Property

Provides access to the settings of automatic scale breaks.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
[PersistenceMode(PersistenceMode.InnerProperty)]
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public AutoScaleBreaks AutoScaleBreaks { get; }

Property Value

Type Description
AutoScaleBreaks

An AutoScaleBreaks object, which contains settings of automatic scale breaks.

Remarks

Use the AutoScaleBreaks property to access the following settings of automatic scale breaks:

  • The AutoScaleBreaks.Enabled property, which allows enabling and disabling automatic scale breaks.

    Note

    Both automatic and manual scale breaks can co-exist along the same axis. The scale breaks calculation is performed in such a way so that if their ranges interfere, scale breaks are merged.

  • The AutoScaleBreaks.MaxCount property, which allows you to define the maximum number of automatic scale breaks.

To access the collection of manual scale breaks, use the Axis.ScaleBreaks property.

To access the appearance options of scale breaks (which are common for both manual and automatic scale breaks), use the Axis.ScaleBreakOptions property.

For more information, refer to Scale Breaks.

See Also