Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GanttView.CriticalPathHighlightMode Property

Gets or sets how the Gantt control detects and highlights critical paths. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

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

NuGet Package: DevExpress.Wpf.Gantt

#Declaration

public CriticalPathHighlightMode CriticalPathHighlightMode { get; set; }

#Property Value

Type Description
CriticalPathHighlightMode

A critical path highlight mode.

Available values:

Name Description
None

Control does not highlight a critical path.

Single

Control highlights a single chain of linked tasks that affect the overall project duration.

Multiple

Control highlights multiple chains of linked tasks that affect the overall project duration.

#Remarks

The GanttControl can automatically calculate and highlight critical paths in the Gantt area. A critical path automatically updates when you move tasks or change the task’s duration.

To detect whether a particular Gantt node is critical, use the GanttNode.IsCritical property.

See Also