Skip to main content

TaskLink.LinkType Property

Gets or sets the value specifying the connection order of child and parent bars.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public TaskLinkType LinkType { get; set; }

Property Value

Type Description
TaskLinkType

A TaskLinkType enumeration value which represents the connection type.

Available values:

Name Description
FinishToStart

The parent task doesn’t start until the child task is finished. This is the default task link type.

The end of the child bar is connected to the starting point of the parent bar. The arrow points to the parent bar.

FinishToStart.png

StartToStart

The parent task doesn’t start until the child task starts

The starting point of the child bar is connected to the start of the parent bar. The arrow points to the parent bar.

StartToStart.png

FinishToFinish

The parent task isn’t finished until the child is finished.

The end of the child bar is connected to the end of the parent bar. The arrow points to the parent bar.

FinishToFinish.png

StartToFinish

The parent task isn’t finished until the child task starts.

The starting point of the child bar is connected to the end of the parent bar. The arrow points to the parent bar.

StartToFinish.png

See Also