aspnetcore-devextreme-dot-aspnet-dot-mvc-dot-builders-dot-ganttbuilder-1.md
A Gantt control.
Namespace : DevExtreme.AspNet.Mvc.Builders
Assembly : DevExtreme.AspNet.Core.dll
public class GanttBuilder<T> :
WidgetBuilder
| Name | Description |
|---|---|
| T |
The data type.
|
The following members return GanttBuilder<T> objects:
Show 142 links
Call the Gantt helper method to create a new Gantt control. The method creates a GanttBuilder<T> class instance whose members allow you to specify control options.
@(Html.DevExtreme().Gantt() // create a Gantt
// call methods to specify control options
)
To create a strongly-typed Gantt, specify a data model in the Gantt<T> method as a type parameter.
@(Html.DevExtreme().Gantt<SampleModel>() // create a strongly-typed Gantt
// call methods to specify control options
)
Object OptionsOwnerBuilder WidgetBuilder GanttBuilder<T>
See Also