Skip to main content

LinearGaugeRangeContainerWidthBuilder.Start(Double) Method

Specifies a start width of a range container. Mirrors the client-side start option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public LinearGaugeRangeContainerWidthBuilder Start(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
LinearGaugeRangeContainerWidthBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().LinearGauge()
    .RangeContainer(container => container
        .Width(width => width
            .Start(10)
        )
    )
)
See Also