Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V20.1
  • GanttDateTimeColumn Class

    A column that displays date and time.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v20.1.dll

    NuGet Package: DevExpress.Web

    Declaration

    public class GanttDateTimeColumn :
        GanttDataColumn

    Remarks

    Create a GanttDateTimeColumn object and add it to the Columns collection to add a column that displays date and time.

    Use the PropertiesDateEdit property to customize the column editor’s appearance and behavior settings.

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsTasksList >
            <Columns>
                <dx:GanttDateTimeColumn FieldName="Start">
                    <PropertiesDateEdit>
                        ...
                    </PropertiesDateEdit>
                </dx:GanttDateTimeColumn>
            </Columns>
        </SettingsTasksList>
    </dx:ASPxGantt>
    

    Examples

    Online Demos

    See Also