From 8005109523dacf99b6a3a8dce1ed926b8b44aafe Mon Sep 17 00:00:00 2001 From: AnnMarueW Date: Tue, 18 Nov 2025 13:45:54 -0800 Subject: [PATCH 1/2] Makes targetable Tooltips interactive --- components/dash-core-components/src/components/Tooltip.react.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dash-core-components/src/components/Tooltip.react.js b/components/dash-core-components/src/components/Tooltip.react.js index 005f48dfe8..9ba6a81ae4 100644 --- a/components/dash-core-components/src/components/Tooltip.react.js +++ b/components/dash-core-components/src/components/Tooltip.react.js @@ -83,7 +83,7 @@ const Tooltip = ({ background: ${background_color}; white-space: nowrap; z-index: ${zindex}; - pointer-events: none; + pointer-events: ${targetable ? 'auto' : 'none'}; } .hover .hover-content, .hover-right .hover-content { From b1595b880cabddb607e5d28c5b3d24e08fade999 Mon Sep 17 00:00:00 2001 From: AnnMarueW Date: Tue, 18 Nov 2025 14:04:05 -0800 Subject: [PATCH 2/2] added changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 056caddd1b..f4b2bf351b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `dash` will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## [UNRELEASED] + +## Fixed +- [#3520](https://github.com/plotly/dash/pull/3520). Set `pointer-events` to `auto` on `Tooltip` to make it possible to interact with tooltip content when `targetable=True` + ## [3.3.0] - 2025-11-12 ## Added