Back to Devexpress

SankeyDiagramControl.EnableHighlighting Property

windowsforms-devexpress-dot-xtracharts-dot-sankey-dot-sankeydiagramcontrol-a2a7ac5e.md

latest1.9 KB
Original Source

SankeyDiagramControl.EnableHighlighting Property

Specifies whether Sankey items can be highlighted.

Namespace : DevExpress.XtraCharts.Sankey

Assembly : DevExpress.XtraCharts.v25.2.UI.dll

NuGet Package : DevExpress.Win.Charts

Declaration

csharp
public bool EnableHighlighting { get; set; }
vb
Public Property EnableHighlighting As Boolean

Property Value

TypeDescription
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:

The following code disables highlighting:

csharp
private void Form1_Load(object sender, EventArgs e) {
  sankeyDiagramControl1.EnableHighlighting = false;
}
vb
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
    sankeyDiagramControl1.EnableHighlighting = False
End Sub

See Also

SankeyDiagramControl Class

SankeyDiagramControl Members

DevExpress.XtraCharts.Sankey Namespace