Skip to main content
All docs
V19.1

GanttSettings.Settings Property

Provides access to the Gantt’s settings.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public MVCxGanttSettings Settings { get; }

Property Value

Type Description
MVCxGanttSettings

The Gantt’s settings.

Remarks

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    ...
    settings.Settings.ScrollableHeight = 600;
    ...
}).Bind(GanttDataProvider.Tasks, GanttDataProvider.Dependencies, GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments).GetHtml()

Online Demos

See Also