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

ASPxGantt.Mappings Property

Provides access to the object that contains a set of gantt’s properties mappings.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public GanttMappings Mappings { get; }

Property Value

Type Description
GanttMappings

Provides functionality for mapping properties to appropriate data fields.

Remarks

Mappings specify what field in a data source corresponds to an object’s task, dependency or resource property.

Concept

Bind a Gantt Control to Data

Example

<dx:ASPxGantt ID="Gantt" runat="server" Width="100%"
    KeyFieldName="ID" ParentFieldName="ParentID" 
    TasksDataSourceID="TasksDataSource" 
    DependenciesDataSourceID="DependenciesDataSource" 
    ResourcesDataSourceID="ResourcesDataSource" 
    ResourceAssignmentsDataSourceID="ResourceAssignmentsDataSource">
    // ...
    <Mappings>
        <Task Key="ID" ParentKey="ParentID" Title="Subject" Start="StartDate" End="EndDate" Progress="PercentComplete" />
        <Dependency Key="ID" PredecessorKey="ParentID" SuccessorKey="DependentID" DependencyType="Type" />
        <Resource Key="ID" Name="Name" />
        <ResourceAssignment Key="ID" TaskKey="TaskID" ResourceKey="TeamID" />
    </Mappings>
</dx:ASPxGantt>

Online Demo

ASPxGantt - Data Binding and Modification

See Also