From 20e6f130d15c17a511d208a529e73d98448140dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 27 Nov 2025 12:24:59 +0100 Subject: [PATCH] Update pie chart inner padding (#16121) ## Before CleanShot 2025-11-27 at 12 13
24@2x ## After CleanShot 2025-11-27 at 12 13
04@2x --- .../graphWidgetPieChart/components/GraphWidgetPieChart.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/GraphWidgetPieChart.tsx b/packages/twenty-front/src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/GraphWidgetPieChart.tsx index 591906dcee..3feaecf55b 100644 --- a/packages/twenty-front/src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/GraphWidgetPieChart.tsx +++ b/packages/twenty-front/src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/GraphWidgetPieChart.tsx @@ -129,7 +129,7 @@ export const GraphWidgetPieChart = ({ data={chartData} margin={showDataLabels && !hasNoData ? PIE_CHART_MARGINS : {}} innerRadius={0.8} - padAngle={hasNoData ? 0 : 1} + padAngle={hasNoData ? 0 : 0.4} colors={chartColors} borderWidth={0} enableArcLinkLabels={showDataLabels && !hasNoData}