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

SankeyToolTipOptions.OpenMode Property

Specifies when Sankey diagram tooltips are displayed.

Namespace: DevExpress.Xpf.Charts.Sankey

Assembly: DevExpress.Xpf.Charts.v20.2.dll

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

Declaration

public ToolTipOpenMode OpenMode { get; set; }

Property Value

Type Description
ToolTipOpenMode

A ToolTipOpenMode enumeration value.

Available values:

Name Description
OnHover

A tooltip appears when hovering over a particular chart element.

OnClick

A tooltip appears when clicking on a particular chart element.

Property Paths

You can access this nested property as listed below:

Object Type Path to OpenMode
SankeyDiagramControl
.ToolTipOptions .OpenMode

Remarks

The following example customizes tooltip options:

<dxsa:SankeyDiagramControl>
    <dxsa:SankeyDiagramControl.ToolTipOptions>
        <dxsa:SankeyToolTipOptions OpenMode="OnHover" 
                                   AutoPopDelay="00:00:03" 
                                   InitialDelay="00:00:00.1" 
                                   CloseOnClick="False"
                                   LinkToolTipEnabled="True" 
                                   NodeToolTipEnabled="True"/>
    </dxsa:SankeyDiagramControl.ToolTipOptions>
</dxsa:SankeyDiagramControl>

Related API members:

Member Description
OpenMode Specifies when Sankey diagram tooltips are displayed.
AutoPopDelay Gets or sets the time interval during which the tooltip is displayed.
InitialDelay Gets or sets the delay before the tooltip is displayed.
CloseOnClick Specifies whether a tooltip is closed when its corresponding visual element is clicked.
LinkToolTipEnabled Specifies whether tooltips are enabled for Sankey links.
NodeToolTipEnabled Specifies whether tooltips are enabled for Sankey nodes.
See Also