From b23e7a40ad512bc81f6e6a7c7fa152e7acd15f96 Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Thu, 19 Oct 2023 14:39:57 +0200 Subject: [PATCH] more --- tests/benchmark/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmark/plot.py b/tests/benchmark/plot.py index 4c9133f7..53ea56ae 100755 --- a/tests/benchmark/plot.py +++ b/tests/benchmark/plot.py @@ -118,7 +118,7 @@ def configure(_fig: go.Figure, title: str = None, showlegend: bool = True): fig.update_xaxes(title_text="Number of features", type="log") fig.update_yaxes(title_text="Fetching time (s)") -fig = make_subplots(rows=2, cols=3, row_heights=[0.7, 0.3]) +fig = make_subplots(rows=2, cols=3, row_heights=[0.7, 0.3], shared_xaxes=False, vertical_spacing=0.07) configure(fig, title="Geometry serialization", showlegend=True) fig.update_layout(legend=dict(yanchor="top", y=0.94, xanchor="left", x=0.02)) fig.update_layout(margin=dict(l=5, r=5, t=30, b=5))