Skip to main content
A newer version of this page is available. .

GanttTimeEditColumn Class

A column that displays time.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class GanttTimeEditColumn :
    GanttDataColumn

Remarks

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

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

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsTasksList >
        <Columns>
            <dx:GanttTimeEditColumn FieldName="Time">
                <PropertiesTimeEdit>
                    ...
                </PropertiesTimeEdit>
            </dx:GanttTimeEditColumn>
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Examples

Online Demos

See Also