Skip to main content
All docs
V24.1

SankeyDiagramControl.EnableHighlighting Property

Specifies whether Sankey items can be highlighted.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v24.1.UI.dll

NuGet Package: DevExpress.Win.Charts

Declaration

public bool EnableHighlighting { get; set; }

Property Value

Type Description
Boolean

true if Sankey items can be highlighted; otherwise, false. The default value is true.

Remarks

The Sankey diagram control highlights a node or a link when the mouse cursor hovers over this element. A node is highlighted with the related links. The image below shows the highlighted Canada node:

Highlighted Sankey link

The following code disables highlighting:

private void Form1_Load(object sender, EventArgs e) {
  sankeyDiagramControl1.EnableHighlighting = false;
}  
See Also