HeatmapToolTipOptions.CloseOnClick Property
Specifies whether a tooltip is closed when its corresponding visual element is clicked.
Namespace: DevExpress.Xpf.Charts.Heatmap
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
Boolean | true if a tooltip is closed when its corresponding visual element is clicked; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to CloseOnClick |
---|---|
HeatmapControl |
|
Example
The following example shows how to enable tooltips for heatmap cells and configure tooltip options:
<Window.Resources>
<DataTemplate x:Key="tooltipTemplate">
<StackPanel Orientation="Vertical" Margin="8">
<Label Foreground="Black"
FontStyle="Italic"
FontSize="14"
Content="{Binding Path=ToolTipText}" />
</StackPanel>
</DataTemplate>
</Window.Resources>
<Grid>
<dxh:HeatmapControl ToolTipEnabled="True"
ToolTipTemplate="{StaticResource ResourceKey=tooltipTemplate}">
<dxh:HeatmapControl.ToolTipOptions>
<dxh:HeatmapToolTipOptions ContentMargin="0"
Pattern="X: {X}
Y: {Y}
Value: {V}"
OpenMode="OnHover"
AutoPopDelay="00:00:03"
InitialDelay="00:00:00.1"
CloseOnClick="False"/>
</dxh:HeatmapControl.ToolTipOptions>
<!--...-->
</dxh:HeatmapControl>
</Grid>
See Also