From 161fe3cbff3c1b034544a5fd0a68c0828e7e6089 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Tue, 20 Jan 2026 13:35:46 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=9C=80=E5=80=BC=E9=81=AE=E6=8C=A1=E5=9B=BE=E8=A1=A8=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=9B=BE=E5=BD=A2=E7=82=B9=E5=87=BB=E4=BA=8B=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/chart/components/js/extremumUitl.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-frontend/src/views/chart/components/js/extremumUitl.ts b/core/core-frontend/src/views/chart/components/js/extremumUitl.ts index 4bc5ba4f34..2fb8cb81ba 100644 --- a/core/core-frontend/src/views/chart/components/js/extremumUitl.ts +++ b/core/core-frontend/src/views/chart/components/js/extremumUitl.ts @@ -227,6 +227,7 @@ export const createExtremumPoint = (chart, ev) => { divParent.style.opacity = '0' divParent.style.transition = 'opacity 0.2s ease-in-out' divParent.style.overflow = 'visible' + divParent.style['pointer-events'] = 'none' // 将父标注加入到图表中 const containerElement = document.getElementById(chart.container) containerElement.insertBefore(divParent, containerElement.firstChild)