SankeyToolTipOptions.LinkToolTipEnabled Property
Specifies whether tooltips are enabled for Sankey links.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
public DefaultBoolean LinkToolTipEnabled { get; set; }
#Property Value
Type | Description |
---|---|
Default |
true, if Sankey link tooltips are enabled; otherwise, false. |
Available values:
Name | Description | Return Value |
---|---|---|
True | The value is true. |
|
False | The value is false. |
|
Default | The value is specified by a global option or a higher-level object. |
|
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Link |
---|---|
Sankey |
|
#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.