Skip to content

Commit

Permalink
switch legend to medium font
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelsoup42 committed Oct 13, 2023
1 parent ba565a3 commit 608a423
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -665,10 +665,10 @@ def plot_balance(self):
inplace=True,
key=lambda i: [self.asset_names.get(x, x) for x in i],
)
font_properties = FontProperties(size="small")
font_properties = FontProperties(size="medium")
fig = pyplot.figure(constrained_layout=True,figsize=(20,14))
plot_ax=pyplot.subplot2grid(fig=fig,shape=(1,8),loc=(0,0),colspan=7)
legend_ax=pyplot.subplot2grid(fig=fig,shape=(1,8),loc=(0,7),colspan=1)
plot_ax=pyplot.subplot2grid(fig=fig,shape=(1,7),loc=(0,0),colspan=6)
legend_ax=pyplot.subplot2grid(fig=fig,shape=(1,7),loc=(0,6),colspan=1)

plot=balance.plot(
ax=plot_ax,
Expand Down

0 comments on commit 608a423

Please sign in to comment.