Back to Devexpress

TaskLinkType Enum

corelibraries-devexpress-dot-xtracharts-31953d2f.md

latest2.8 KB
Original Source

TaskLinkType Enum

Lists the values used to specify the type of link for a TaskLink object. Visually it defines connection points of arrowed lines representing task links in the GanttDiagram.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum TaskLinkType
vb
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum TaskLinkType

Members

NameDescription
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.

| | 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.

| | 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.

| | 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.

|

The following properties accept/return TaskLinkType values:

LibraryRelated API Members
Cross-Platform Class LibraryTaskLink.LinkType
WinForms ControlsTaskLinkModel.LinkType

See Also

How to: Create a Gantt Chart with Task Links

DevExpress.XtraCharts Namespace