From f293fbba67ce78f8c5bd9333f0cf926732132fb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20=C3=96rtenberg?= Date: Thu, 29 May 2025 21:13:29 +0200 Subject: [PATCH] results: fixed legend font size on synth --- plots/synth_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plots/synth_results.py b/plots/synth_results.py index 7372bd2..d552072 100644 --- a/plots/synth_results.py +++ b/plots/synth_results.py @@ -32,7 +32,7 @@ ax.set_xlabel('Metric',fontsize=text_size) ax.set_title('Resource Utilization of GANIMEDE versions',fontsize=text_size) ax.set_xticks(x + width, metrics,fontsize=text_size) ax.set_yticks(ys, ys,fontsize=text_size) -ax.legend(loc='upper left', ncols=3) +ax.legend(loc='upper left', ncols=3,fontsize=text_size) ax.set_ylim(0, 10) plt.show()