RangeSelectorScaleBuilder.Breaks(Action<CollectionFactory<VizScaleBreakBuilder>>) Method
Provides access to the client-side breaks option that represents a scale break collection.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public RangeSelectorScaleBuilder Breaks(
Action<CollectionFactory<VizScaleBreakBuilder>> configurator
)
Parameters
Name | Type | Description |
---|---|---|
configurator | Action<CollectionFactory<VizScaleBreakBuilder>> | A function that allows you to add items to the collection. |
Returns
Type | Description |
---|---|
RangeSelectorScaleBuilder | A reference to this instance after the method is called. |
Remarks
To configure a scale break collection, use a multiline lambda expression.
In this case, a lambda parameter performs the role of a collection factory, and its Add()
method adds a new item to the collection.
The Add()
method returns VizScaleBreakBuilder whose methods you can use to configure an item.
@(Html.DevExtreme().RangeSelector()
.Scale(scale => scale
.Breaks(breaks => {
breaks.Add(); // call methods to configure a scale break
breaks.Add();
})
)
)
Refer to Nested Options and Collections for more information.
See Also