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

SankeyToolTipOptions Class

Contains Sankey diagram tooltip options.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

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

Declaration

public class SankeyToolTipOptions :
    IXtraSupportShouldSerialize

The following members return SankeyToolTipOptions objects:

Remarks

Example

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.

Inheritance

Object
SankeyToolTipOptions
See Also