Skip to main content
All docs
V23.2

SankeyDiagramControl.ToolTipOptions Property

Specifies Sankey diagram tooltip options.

Namespace: DevExpress.XtraCharts.Sankey

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

NuGet Package: DevExpress.Win.Charts

Declaration

public SankeyToolTipOptions ToolTipOptions { get; }

Property Value

Type Description
SankeyToolTipOptions

Contains Sankey diagram tooltip options.

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