Skip to main content
A newer version of this page is available. .
All docs
V20.2

SankeyToolTipOptions.NodeToolTipEnabled Property

Specifies whether tooltips are enabled for Sankey nodes.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

public DefaultBoolean NodeToolTipEnabled { get; set; }

Property Value

Type Description
DefaultBoolean

true, if Sankey node tooltips are enabled; otherwise, false.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Object Type Path to NodeToolTipEnabled
SankeyDiagramControl
.ToolTipOptions .NodeToolTipEnabled

Remarks

Sankey diagram with default settings shows tooltips. The following code disables tooltips for SankeyLinks and SankeyNodes:

using DevExpress.Utils;
//...
sankeyDiagramControl1.ToolTipOptions.LinkToolTipEnabled = DefaultBoolean.False;
sankeyDiagramControl1.ToolTipOptions.NodeToolTipEnabled = DefaultBoolean.False;

Refer to the following help topic for more information on the tooltip customization: SankeyDiagramControl.ToolTipController.

See Also