X-Git-Url: https://git.toastfreeware.priv.at/chrisu/seepark.git/blobdiff_plain/adbf81ddde4abac315cb17ad4342fbcdd82efb0d..4bfc7ad02abc6bb60d507f60fa783e84e03c8352:/web/seepark_web.py diff --git a/web/seepark_web.py b/web/seepark_web.py index 57509e4..a155ffc 100644 --- a/web/seepark_web.py +++ b/web/seepark_web.py @@ -334,6 +334,7 @@ def report(year, month): # table plt.figure(figsize=a4) columns = ['Datum'] + plt.ylabel('Temperatur in °C') for t in report_times: columns.append('Wassertemperatur {} Uhr'.format(t.hour)) cells = [] @@ -362,7 +363,6 @@ def report(year, month): plt.plot(x, y) plt.xticks(days_datetime, days_str, rotation='vertical') plt.xlabel('Tag') - plt.ylabel('Temparatur in °C') plt.axis(xmin=begin, xmax=end) plt.grid() plt.title(title)