Skip to main content
A newer version of this page is available. .
All docs
V21.1

SankeyDiagramControl.EnableHighlighting Property

Specifies whether Sankey items can be highlighted.

Namespace: DevExpress.XtraCharts.Sankey

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

NuGet Packages: DevExpress.Win.Charts, DevExpress.Win.Design

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