Skip to main content
All docs
V25.1
  • GanttTaskMappingInfo.Title Property

    Specifies the name of the data field that contains information on the task’s title.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

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

    Property Value

    Type Default Description
    String "Title"

    A data field name.

    Remarks

    <dx:ASPxGantt ID="Gantt" runat="server" Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" ...>
        <Mappings>
            <Task Key="ID" ParentKey="ParentID" Title="Subject" Start="StartDate" End="EndDate" Progress="PercentComplete" />
            //...
        </Mappings>
        ...
    </dx:ASPxGantt>
    

    Concept

    Bind To Data

    Online Demos

    See Also