如何更改mplfinance标题中的字体大小和字体类型

问题描述 投票:0回答:1

我有以下代码:

from pandas_datareader import data as web
df = web.DataReader('goog','yahoo', start="2021-07-3", end="2021-09-12")
mpf.plot(df, style='charles', type = 'candle', volume=True, figratio=(12,8), title = "new title \n another title")

您能否告诉我如何更改换行符的字体和大小

another title

python python-3.x matplotlib title mplfinance
1个回答
3
投票
df = web.DataReader('goog','yahoo', start="2021-07-3", end="2021-09-12")
fig, axlist = mpf.plot(df, style='charles', type = 'candle', volume=True, figratio=(12,8), returnfig=True)

# add a new suptitle
fig.suptitle('Figure Title', y=1.05, fontsize=30, x=0.59)

# add a title the the correct axes
axlist[0].set_title('Axis Title', fontsize=25, style='italic', fontfamily='fantasy', loc='center')

# save the figure
fig.savefig('test.jpg', bbox_inches='tight')

© www.soinside.com 2019 - 2024. All rights reserved.