Skip to main content
A newer version of this page is available. .
All docs
V21.2

GanttViewSettings.ViewTypeRangeMin Property

Specifies the minimum zoom level of tasks in the Gantt chart.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(GanttViewType.TenMinutes)]
public GanttViewType ViewTypeRangeMin { get; set; }

Property Value

Type Default Description
GanttViewType TenMinutes

One of the enumeration values.

Available values:

Name Description
TenMinutes

Displays ten minutes.

Hours

Displays hours.

SixHours

Displays six hours.

Days

Displays days.

Weeks

Displays weeks.

Months

Displays months.

Quarter

Displays quarters.

Years

Displays years.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ViewTypeRangeMin
ASP.NET MVC Extensions GanttSettings
.SettingsGanttView .ViewTypeRangeMin
ASP.NET Web Forms Controls ASPxGantt
.SettingsGanttView .ViewTypeRangeMin

Remarks

Web Forms:

<dx:ASPxGantt ID="Gantt" runat="server" ...>
    //...
    <SettingsGanttView ViewTypeRangeMin="Months" ViewTypeRangeMax="Days" />
</dx:ASPxGantt>

MVC:

@Html.DevExpress().Gantt(settings => {
    settings.Name = "gantt";
    settings.SettingsGanttView.ViewTypeRangeMin = GanttViewType.Months;
    settings.SettingsGanttView.ViewTypeRangeMin = GanttViewType.Days;    
    ...
}).Bind(
    GanttDataProvider.Tasks, 
    GanttDataProvider.Dependencies, 
    GanttDataProvider.Resources, 
    GanttDataProvider.ResourceAssignments
).GetHtml()
See Also