Back to Devexpress

SankeyToolTipOptions.InitialDelay Property

wpf-devexpress-dot-xpf-dot-charts-dot-sankey-dot-sankeytooltipoptions-94350d65.md

latest3.5 KB
Original Source

SankeyToolTipOptions.InitialDelay Property

Gets or sets the delay before the tooltip is displayed.

Namespace : DevExpress.Xpf.Charts.Sankey

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public TimeSpan InitialDelay { get; set; }
vb
Public Property InitialDelay As TimeSpan

Property Value

TypeDescription
TimeSpan

The delay before the tooltip is displayed.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to InitialDelay
SankeyDiagramControl

.ToolTipOptions .InitialDelay

|

Remarks

This property specifies the time interval between when a user moves the mouse pointer over a visual element, and when the tooltip is displayed. The tooltip is visible during the time period specified in the ToolTipOptions.AutoPopDelay property.

The following example customizes tooltip options:

xaml
<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:

MemberDescription
OpenModeSpecifies when Sankey diagram tooltips are displayed.
AutoPopDelayGets or sets the time interval during which the tooltip is displayed.
InitialDelayGets or sets the delay before the tooltip is displayed.
CloseOnClickSpecifies whether a tooltip is closed when its corresponding visual element is clicked.
LinkToolTipEnabledSpecifies whether tooltips are enabled for Sankey links.
NodeToolTipEnabledSpecifies whether tooltips are enabled for Sankey nodes.

See Also

AutoPopDelay

SankeyToolTipOptions Class

SankeyToolTipOptions Members

DevExpress.Xpf.Charts.Sankey Namespace