Skip to main content
All docs
V23.2
ID

GanttBuilder<T>.StartDateRange(DateTime) Method

Specifies the start date of the date interval in the Gantt chart. Mirrors the client-side startDateRange object.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GanttBuilder<T> StartDateRange(
    DateTime value
)

Parameters

Name Type Description
value DateTime

The option value.

Returns

Type Description
GanttBuilder<T>

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Gantt()
    .StartDateRange(new DateTime(2020, 1, 1))
    .EndDateRange(new DateTime(2020, 10, 1))
)
See Also