File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ def apply_settings(settings: SettingsContainer = SETTINGS):
71
71
palette = settings .plot_seaborn_palette )
72
72
73
73
mpl .rcParams .update ({
74
+ "legend.loc" : settings .plot_legend_loc ,
74
75
"lines.linewidth" : settings .plot_linewidth ,
75
76
"text.usetex" : settings .plot_usetex ,
76
77
"font.family" : settings .plot_fontfamily ,
Original file line number Diff line number Diff line change @@ -104,6 +104,11 @@ def get_default_plot_backend() -> str:
104
104
False ,
105
105
"Invert the y-axis of plots."
106
106
),
107
+ "plot_legend_loc" : (
108
+ "best" ,
109
+ "Plot legend location. See here for the available 'loc' options:\n "
110
+ "https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html"
111
+ ),
107
112
"plot_linewidth" : (
108
113
1.5 ,
109
114
"Line width value supported by matplotlib."
You can’t perform that action at this time.
0 commit comments