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

DxChartValueBreaks Class

Contains settings for the scale breaks.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public class DxChartValueBreaks :
    DxSettingsComponent<ChartValueBreaksModel>

Remarks

A scale break allows you to break off a part of the axis to improve the readability of a chart with high amplitude values.

Use the StartValue and EndValue properties to limit a scale break. A scale break is visible only if its range exceeds the tick interval.

<DxChart Data="@SalesData">
    <DxChartValueBreaks StartValue="50" EndValue="200" >
    </DxChartValueBreaks>
    ...
</DxChart>

The value axis supports auto-calculated scale breaks, which can be enabled by setting the AutoBreaksEnabled option to true.

<DxChart Data="@SalesData">
    <DxChartValueAxis AutoBreaksEnabled="true" >
        ...
    </DxChartValueAxis>
    ...
</DxChart>

Inheritance

Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.Internal.ChartValueBreaksModel>
DxChartValueBreaks
See Also