wpf-devexpress-dot-xpf-dot-gantt-dot-ganttview.md
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.v25.2.dll
NuGet Package : DevExpress.Wpf.Gantt
public CriticalPathHighlightMode CriticalPathHighlightMode { get; set; }
Public Property CriticalPathHighlightMode As CriticalPathHighlightMode
| 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.
|
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