GanttColumnHeaderFilterBuilder.GroupInterval(HeaderFilterGroupInterval) Method
In This Article
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
C#
public GanttColumnHeaderFilterBuilder GroupInterval(
HeaderFilterGroupInterval value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Header |
The option value. |
#Returns
Type | Description |
---|---|
Gantt |
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(HeaderFilterGroupInterval.Day)
);
})
)
See Also