Skip to main content

RangeSelectorScaleBuilder.Type(RangeSelectorAxisScaleType) Method

Specifies the type of the scale. Mirrors the client-side type option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public RangeSelectorScaleBuilder Type(
    RangeSelectorAxisScaleType value
)

Parameters

Name Type Description
value RangeSelectorAxisScaleType

The option value.

Returns

Type Description
RangeSelectorScaleBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().RangeSelector()
    .Scale(scale => scale
        .Type(RangeSelectorAxisScaleType.Continuous)
    )
)
See Also