Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SankeyDiagramControl.ToolTipOptions Property

Specifies Sankey diagram tooltip options.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v24.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