Skip to main content
All docs
V19.1

GanttSettings.SettingsBehavior Property

Provides access to the Gantt’s behavior settings.

Namespace: DevExpress.Web.Mvc

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

Declaration

public TreeListSettingsBehavior SettingsBehavior { get; }

Property Value

Type Description
TreeListSettingsBehavior

The Gantt’s behavior settings object.

Remarks

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    ...
    settings.SettingsBehavior.AllowEllipsisInText = true;
    settings.SettingsBehavior.AllowFocusedNode = true;
    ...
}).Bind(GanttDataProvider.Tasks, GanttDataProvider.Dependencies, GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments).GetHtml()

Online Demos

See Also