Skip to main content
All docs
V23.2

GanttDateEditProperties.TimeSectionProperties Property

Gets settings of the time section in the GanttDateTimeColumn editor’s drop-down window.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public GanttDateEditTimeSectionProperties TimeSectionProperties { get; }

Property Value

Type Description
GanttDateEditTimeSectionProperties

The time section’s settings.

Remarks

Set the Visible property to true to display the time section in the GanttDateTimeColumn editor’s drop-down window:

<dx:ASPxGantt ID="Gantt" runat="server"...>
    <!-- ... -->
    <SettingsTasksList >
        <Columns>
            <dx:GanttDateTimeColumn FieldName="StartDate" Caption="Start Date">
                <PropertiesDateEdit AllowUserInput="true" DisplayFormatString="MM/dd/yy H:mm">
                    <TimeSectionProperties Visible="true"/>
                </PropertiesDateEdit>
            </dx:GanttDateTimeColumn>
            <!-- ... -->
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Add a column that displays date and time in the ASPxGantt

See Also