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

GanttTaskMappingInfo.Start Property

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

Namespace: DevExpress.Web.ASPxGantt

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

Declaration

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

Property Value

Type Default Description
String "Start"

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 demo

ASPxGantt - Data Binding and Modification

See Also