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

GanttView.BaselineDurationMapping Property

Provides a path to a data field that stores the task baseline’s duration. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Gantt, DevExpress.Wpf.Gantt

Declaration

public Mapping BaselineDurationMapping { get; set; }

Property Value

Type Description
Mapping

A Mapping object indicating the data field and the converter.

Remarks

Use the BaselineDurationMapping property to bind the Gantt item’s GanttNode.BaselineDuration property to a data field. The data field is obtained from the data source specified by the GanttControl’s ItemsSource property.

Tip

Use the Mapping.Converter property to register a value converter for a custom storing format.

You can specify mapping as a Mapping markup extension object, or as a string. The code sample below illustrates how to map Gantt items’ properties to data source fields.

<dxgn:GanttControl ItemsSource="{Binding Tasks}">
    ...
    <dxgn:GanttControl.View>
        <dxgn:GanttView
            KeyFieldName="Id"
            ParentFieldName="ParentId"

            NameMapping="{dxgn:Mapping Name}"
            StartDateMapping="StartDate"
            FinishDateMapping="{dxgn:Mapping FinishDate}"
            ProgressMapping="Progress"
            BaselineStartDateMapping="BaselineStartDate"
            BaselineDurationMapping="BaselineDuration"

            PredecessorLinksPath="Links">
            <dxgn:GanttView.PredecessorLinkMappings>
                <dxgn:GanttPredecessorLinkMappings Task="Id" PredecessorTask="PredecessorId"/>
            </dxgn:GanttView.PredecessorLinkMappings>
        </dxgn:GanttView>
    </dxgn:GanttControl.View>
</dxgn:GanttControl>

Note

The task baseline’s duration means the working time span.

Example

You have the following working time rules:

  • working time per day is 8 hours,
  • task baseline’s duration is set to 1 day (that is 24 hours).

In this case, the task baseline duration is 24 working time hours, that is 3 working days.

See Also