Skip to main content

GanttTextColumn Class

A column that displays text.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class GanttTextColumn :
    GanttDataColumn

Remarks

Create a GanttTextColumn object and add it to the Columns collection to add a column that displays text.

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

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsTasksList >
        <Columns>
            <dx:GanttTextColumn FieldName="Title">
                <PropertiesTextEdit>
                    ...
                </PropertiesTextEdit>
            </dx:GanttTextColumn>
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Examples

Online Demos

See Also