aspnet-devexpress-dot-web-dot-aspxgantt-dot-ganttviewsettings-a2ca995b.md
Specifies the minimum zoom level of tasks in the Gantt chart.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(GanttViewType.TenMinutes)]
public GanttViewType ViewTypeRangeMin { get; set; }
<DefaultValue(GanttViewType.TenMinutes)>
Public Property ViewTypeRangeMin As GanttViewType
| 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.
|
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
|
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