Skip to main content
A newer version of this page is available. .

GanttBuilder<T> Class

A Gantt control.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public class GanttBuilder<T> :
    WidgetBuilder

Type Parameters

Name Description
T

The data type.

The following members return GanttBuilder objects:

Show 130 links

Remarks

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
)

Inheritance

See Also