From c7055b3f1e66732aed82083febd06cec8ee974b0 Mon Sep 17 00:00:00 2001 From: himaghna Date: Wed, 9 Mar 2022 09:47:14 -0800 Subject: [PATCH] Change plotting fontsizes --- AIMSim/utils/plotting_scripts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AIMSim/utils/plotting_scripts.py b/AIMSim/utils/plotting_scripts.py index 0e874926..6365e24d 100644 --- a/AIMSim/utils/plotting_scripts.py +++ b/AIMSim/utils/plotting_scripts.py @@ -487,7 +487,7 @@ def plot_scatter_interactive( yaxis_title=ylabel, font=dict( family="Courier New, monospace", - size=20)) + size=40)) if title is not None: fig.update_layout(title={'text': title, @@ -495,7 +495,7 @@ def plot_scatter_interactive( 'x': 0.5, 'xanchor': 'center', 'yanchor': 'top', - 'font_size': 30}) + 'font_size': 40}) if hover_names is not None: fig.update_traces(hovertemplate="%{text}

")