SankeyDiagramControl.ToolTipOptions Property
In This Article
Specifies tooltip options of the Sankey diagram.
Namespace: DevExpress.Xpf.Charts.Sankey
Assembly: DevExpress.Xpf.Charts.v24.2.dll
NuGet Package: DevExpress.Wpf.Charts
#Declaration
public SankeyToolTipOptions ToolTipOptions { get; set; }
#Property Value
Type | Description |
---|---|
Sankey |
Contains Sankey diagram tooltip options. |
#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 |
---|---|
Open |
Specifies when Sankey diagram tooltips are displayed. |
Auto |
Gets or sets the time interval during which the tooltip is displayed. |
Initial |
Gets or sets the delay before the tooltip is displayed. |
Close |
Specifies whether a tooltip is closed when its corresponding visual element is clicked. |
Link |
Specifies whether tooltips are enabled for Sankey links. |
Node |
Specifies whether tooltips are enabled for Sankey nodes. |
See Also