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

GanttTextColumn Class

A column that displays text.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v21.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