From: Ruben Rodriguez Date: Thu, 16 Feb 2023 16:13:22 +0000 (+0100) Subject: Updated other references to Droid Sans in matplotlib.py X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b6b7dcf9c6689463dd8f70e7c7b50c2300e7f265;p=financial-reports.git Updated other references to Droid Sans in matplotlib.py --- diff --git a/plugins/matplotlib.py b/plugins/matplotlib.py index 19d3aae..a910584 100644 --- a/plugins/matplotlib.py +++ b/plugins/matplotlib.py @@ -95,8 +95,8 @@ def run_matplotlib(data, options=[]): if title is not None: ax1.set_title(data.get("title", None), fontsize=24, fontfamily="Roboto Sans", fontweight='bold') filename=data.get("filename", None) - plt.setp(pcts, color='white', fontweight='bold', fontsize=9, fontfamily="Droid Sans") - plt.setp(texts, color='black', fontsize=12, fontfamily="Droid Sans") + plt.setp(pcts, color='white', fontweight='bold', fontsize=9, fontfamily="Roboto Sans") + plt.setp(texts, color='black', fontsize=12, fontfamily="Roboto Sans") if not os.path.exists("./output/images"): os.mkdir("./output") os.mkdir("./output/images")