From 1321900246f596e5f2b0b8c571ea7e9954c1a114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joa=CC=83o=20Sobral?= Date: Tue, 3 Dec 2024 16:10:51 +0000 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20y=20label=20cutoff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/charts/shared/axis-height-band.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/charts/shared/axis-height-band.tsx b/app/charts/shared/axis-height-band.tsx index d3ed87de0..c079c05eb 100644 --- a/app/charts/shared/axis-height-band.tsx +++ b/app/charts/shared/axis-height-band.tsx @@ -55,7 +55,7 @@ export const AxisHeightBand = () => { hasNegativeValues ? gridColor : domainColor ); g.selectAll(".tick text") - .attr("x", 0) + .attr("x", -fontSize) .attr("font-size", fontSize) .attr("font-family", fontFamily) .attr("fill", labelColor)