Skip to main content
All docs
V20.2

DxChartValueBreaks.StartValue Property

Specifies a value that limits the scale break.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public object StartValue { get; set; }

Property Value

Type Description
Object

The start value.

Remarks

Use the StartValue and EndValue properties to limit a scale break.

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