From 47e5928d2e98bef9dc54690d122052307eb2d951 Mon Sep 17 00:00:00 2001 From: Devit <39530469+DevitX@users.noreply.github.com> Date: Tue, 12 Nov 2024 18:03:13 +0100 Subject: [PATCH] fix(Bar): revert the strokeFirst to stroke null following the reviewed changes --- src/chart/bar/BarView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chart/bar/BarView.ts b/src/chart/bar/BarView.ts index b8745d2021..a34cc153a0 100644 --- a/src/chart/bar/BarView.ts +++ b/src/chart/bar/BarView.ts @@ -1177,7 +1177,7 @@ function createLarge( group.add(el); el.useStyle(data.getVisual('style')); // Stroke is rendered first to avoid overlapping with fill - el.style.strokeFirst = true; + el.style.stroke = null; // Enable tooltip and user mouse/touch event handlers. getECData(el).seriesIndex = seriesModel.seriesIndex;