Skip to main content
All docs
V25.1
  • GanttDataColumn.FieldName Property

    Specifies the name of a field that provides data for a column.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

    [DefaultValue("")]
    public virtual string FieldName { get; set; }

    Property Value

    Type Default Description
    String String.Empty

    The field name.

    Remarks

    Use the FieldName property to specify the name of a field that provides data for a column.

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsTaskList Width="45%">
            <Columns>
                <dx:GanttDateTimeColumn FieldName="EndDate" Width="100" DisplayFormat="MM\/dd\/yyyy" />
            </Columns>
        </SettingsTaskList>
    </dx:ASPxGantt>
    

    Examples

    Online Demos

    See Also