From f55c7c45198dc94e0a0cc879c61700451d281167 Mon Sep 17 00:00:00 2001 From: Petr Svenda <petr@svenda.com> Date: Fri, 23 Aug 2024 17:10:45 +0200 Subject: [PATCH] minor move of legend position for whole interval graph --- Scripts/parse_dumplings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/parse_dumplings.py b/Scripts/parse_dumplings.py index 7a98dc1..12ddb0b 100644 --- a/Scripts/parse_dumplings.py +++ b/Scripts/parse_dumplings.py @@ -1738,7 +1738,7 @@ def wasabi_plot_remixes(mix_id: str, mix_protocol: MIX_PROTOCOL, target_path: Pa limit_size = restrict_to_in_size print(f'Limits for inputs value is {limit_size[0]} - {limit_size[1]}') - # Decide on resolution of liqudity display + # Decide on resolution of liquidity display #interval_to_display = weeks_dict interval_to_display = days_dict @@ -1841,7 +1841,7 @@ def wasabi_plot_remixes(mix_id: str, mix_protocol: MIX_PROTOCOL, target_path: Pa # if ax: # ax.legend(loc='center left') if ax2: - ax2.legend(loc='upper left', fontsize='small') + ax2.legend(loc='upper left', fontsize='small', bbox_to_anchor=(0.01, 0.85), borderaxespad=0) if ax3: ax3.legend() -- GitLab