Back to Devexpress

AutoScaleBreaks.Enabled Property

wpf-devexpress-dot-xpf-dot-charts-dot-autoscalebreaks.md

latest2.0 KB
Original Source

AutoScaleBreaks.Enabled Property

Gets or sets a value indicating whether to enable automatic scale breaks.

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public bool Enabled { get; set; }
vb
Public Property Enabled As Boolean

Property Value

TypeDescription
Boolean

true, if automatic scale breaks are enabled; otherwise, false.

|

Remarks

When scale breaks are enabled, you can use the AutoScaleBreaks.MaxCount property to define the maximum possible value of auto-generated scale breaks.

The Axis2D.ScaleBreaks property provides access to the manually added scale break collection.

Example

This example shows how to automatically generate scale breaks for an axis.

To do this, set the AutoScaleBreaks.Enabled property to true. Limit the maximum possible number of auto-created scale breaks using the AutoScaleBreaks.MaxCount property.

xaml
<dxc:XYDiagram2D.AxisY>
    <dxc:AxisY2D>
        <dxc:AxisY2D.AutoScaleBreaks>
            <dxc:AutoScaleBreaks Enabled="True" 
                                 MaxCount="3"/>
        </dxc:AxisY2D.AutoScaleBreaks>
    </dxc:AxisY2D>
</dxc:XYDiagram2D.AxisY>

See Also

AutoScaleBreaks Class

AutoScaleBreaks Members

DevExpress.Xpf.Charts Namespace