From 144e7142358083cf7cc570718ecc90d98239d506 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 19 Mar 2026 12:54:12 +0100 Subject: [PATCH] fix: reduce right margin in distance histogram to use full card width Co-Authored-By: Claude Sonnet 4.6 --- src/figures.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/figures.py b/src/figures.py index cab5b40..415d708 100644 --- a/src/figures.py +++ b/src/figures.py @@ -626,6 +626,7 @@ def get_distance_histogram(lff: pl.LazyFrame) -> dcc.Graph: ) fig.update_layout(bargap=0) + fig.update_layout(margin=dict(r=10)) fig.update_xaxes( tickvals=[0, 1, 2, 3, 4], ticktext=["1", "10", "100", "1 000", "10 000"],