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

GanttMappings Class

Represents a collection of mappings for the Gantt’s objects (tasks, dependencies, resources) to data fields.

Namespace: DevExpress.Web.ASPxGantt

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

NuGet Package: DevExpress.Web

Declaration

public class GanttMappings :
    PropertiesBase

The following members return GanttMappings objects:

Library Related API Members
ASP.NET Controls and MVC Extensions ASPxGantt.Mappings
ASP.NET MVC Extensions GanttSettings.Mappings

Remarks

<dx:ASPxGantt ID="Gantt" runat="server" Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" ...>
    <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="ResourceID" />
    ...
</dx:ASPxGantt>

Examples

Online Demos

Implements

Inheritance

See Also