Skip to content
Snippets Groups Projects
Commit 377e4986 authored by kgao's avatar kgao
Browse files

Changed font size of title

Title was a bit too big
changed it to 13
parent 5e5ffdf9
No related branches found
No related tags found
No related merge requests found
......@@ -416,7 +416,7 @@ def create_full_plot(frame, ymin, ymax, create_air_dew_plot, output):
# create plots
if need_subplots:
if plots_created == 1:
plt.figure().suptitle('AO&SS Building Tower Meteorogram ' + dateString)
plt.figure().suptitle('AO&SS Building Tower Meteorogram ' + dateString, fontsize=13)
ax1 = plt.subplot(plotNumber + plots_created)
ax1.set_title(TITLES[name], x=0.5, y=get_subtitle_location(numberPlots), fontsize=8)
......@@ -428,7 +428,7 @@ def create_full_plot(frame, ymin, ymax, create_air_dew_plot, output):
plots_created += 1
else:
plt.figure().suptitle('AO&SS Building Tower ' + IND_TITLES[name] + ' ' + dateString)
plt.figure().suptitle('AO&SS Building Tower ' + IND_TITLES[name] + ' ' + dateString, fontsize=13)
plt.ylabel(TITLES[name])
#if we don't need two lines in same plot, plot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment