From fbc877cb7155e323e8df5e6b71dc65579eb42135 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Fri, 31 Oct 2025 19:02:28 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=90=91=E4=B8=8B=E6=BB=9A=E5=8A=A8=E8=87=B3=E5=9B=BE=E8=A1=A8?= =?UTF-8?q?=E5=85=A8=E9=83=A8=E5=8F=AF=E8=A7=81=E5=90=8E=EF=BC=8C=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E8=BD=AE=E6=92=AD=E6=9C=AA=E9=87=8D=E5=90=AF=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/chart/components/js/G2TooltipCarousel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/js/G2TooltipCarousel.ts b/core/core-frontend/src/views/chart/components/js/G2TooltipCarousel.ts index 0192cb5cf7..9f3f9f7303 100644 --- a/core/core-frontend/src/views/chart/components/js/G2TooltipCarousel.ts +++ b/core/core-frontend/src/views/chart/components/js/G2TooltipCarousel.ts @@ -193,7 +193,7 @@ class G2TooltipCarousel { if (!this.intersectionObserver) { this.intersectionObserver = new IntersectionObserver(this.handleIntersection.bind(this), { root: null, - threshold: [0, 0.3, 0.5, 0.7] + threshold: [0, 0.3, 0.5, 0.7, 1] }) } this.intersectionObserver?.observe(this.newChart.getContainer())