aspnet-devexpress-dot-web-dot-aspxgantt-dot-ganttviewsettings-cd75f4bb.md
Specifies the end date of the date interval in the Gantt chart.
Namespace : DevExpress.Web.ASPxGantt
Assembly : DevExpress.Web.ASPxGantt.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(typeof(DateTime), "")]
public DateTime EndDateRange { get; set; }
<DefaultValue(GetType(Date), "")>
Public Property EndDateRange As Date
| Type | Default | Description |
|---|---|---|
| DateTime | String.Empty |
The end date.
|
You can access this nested property as listed below:
| Library | Object Type | Path to EndDateRange |
|---|---|---|
| ASP.NET MVC Extensions | GanttSettings |
.SettingsGanttView .EndDateRange
| | ASP.NET Web Forms Controls | ASPxGantt |
.SettingsGanttView .EndDateRange
|
Use the StartDateRange and the EndDateRange properties to specify the date interval in the Gantt chart.
Run Demo: ASPxGantt - Chart Appearance Run Demo: MVCxGantt - Chart Appearance
Web Forms:
<dx:ASPxGantt ID="Gantt" runat="server" ...>
//...
<SettingsGanttView
StartDateRange="2018-01-01"
EndDateRange="2020-01-01" />
</dx:ASPxGantt>
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.SettingsGanttView.StartDateRange = new DateTime(2018, 01, 01);
settings.SettingsGanttView.EndDateRange = new DateTime(2020, 01, 01);
...
}).Bind(
GanttDataProvider.Tasks,
GanttDataProvider.Dependencies,
GanttDataProvider.Resources,
GanttDataProvider.ResourceAssignments
).GetHtml()
See Also