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

Task Link in the Gantt View

A Gantt Diagram can display dependency relationships between activities (in other words, task relations). These relations are implemented as instances of the TaskLink class.

A task link is a relation between a parent point and child points. The dependency type is defined by the TaskLinkType enumeration member and can be specified by the TaskLink.LinkType property. These types are: Finish to Start (the most common), Finish to Finish, Start to Finish and Start to Start. Their appearance in a chart specifies the order in which tasks should begin and end.

tasklinks.png

The task link is displayed as a line, connecting the terminal points of task bars, with an arrowhead pointed to a bar, denoted as a “parent bar”.

The TaskLinkOptions object specifies drawing parameters, (i.e. Color, line Thickness, arrowhead’s ArrowHeight and ArrowWidth) minimal distance between the line and the bars it connects (MinIndent) and line visibility (Visible).

The table below lists the main properties which affect the element’s appearance and functionality:

Link Type

TaskLink.LinkType

Color

TaskLinkOptions.Color, TaskLinkOptions.ColorSource

Line Thickness

TaskLinkOptions.Thickness

Arrowhead Length

TaskLinkOptions.ArrowHeight

Arrowhead Width

TaskLinkOptions.ArrowWidth

Line Indentation

TaskLinkOptions.MinIndent

Visibility

TaskLinkOptions.Visible

See Also