From ded0c47604dcd14f6616ce5b14cc31794d9dfed7 Mon Sep 17 00:00:00 2001 From: Benedikt Bastin Date: Mon, 12 Apr 2021 15:28:56 +0200 Subject: [PATCH] fix: Fixed formatting for percentage graph --- plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.py b/plot.py index d298fde..ccc4da6 100644 --- a/plot.py +++ b/plot.py @@ -600,7 +600,7 @@ def plot_cumulative_two_vaccinations_percentage(): ax.legend(loc='upper left') ax.xaxis_date() - ax.yaxis.set_major_formatter(mtick.PercentFormatter(1.0)) + ax.yaxis.set_major_formatter(mtick.PercentFormatter(1.0, symbol=' %')) ax.set_xlabel('Datum') ax.set_ylabel('Kumulative Impfungen')