Skip to main content

TreeListColumnHeaderFilterBuilder.GroupInterval(Double) Method

Specifies how the header filter combines values into groups. Does not apply if you specify a custom header filter data source. Mirrors the client-side groupInterval option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TreeListColumnHeaderFilterBuilder GroupInterval(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
TreeListColumnHeaderFilterBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Gantt()
    .Columns(columns => {
        columns.Add().HeaderFilter(filter => filter
            .GroupInterval(1000)
        );
    })
)
See Also