From 440484977f8123a291c674379823e8e149d6bbfe Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 27 Mar 2024 14:13:09 -0600 Subject: axist labels --- api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api.py') diff --git a/api.py b/api.py index e87f412..8aa326a 100644 --- a/api.py +++ b/api.py @@ -151,9 +151,9 @@ def plot_data(x_data, y_data, std_dev_data, color_picker, labels, df, with mpl.rc_context({"font.family": arial_font.get_name(), "font.size": 9}): ax.legend(handles, labels, loc='best') - # set axis labels to Arial: - ax.set_xlabel(x_label, fontproperties=arial_font) - ax.set_ylabel(y_label, fontproperties=arial_font) + # set axis tick labels to Arial: + for label in (ax.get_xticklabels() + ax.get_yticklabels()): + label.set_fontproperties(arial_font) return fig -- cgit v1.2.3