Home > front end >  How to change font size and font type in mplfinance title
How to change font size and font type in mplfinance title

Time:09-17

I have the following code:

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")

enter image description here

Could you please advise how can i change the font and size of newline another title ?

CodePudding user response:

  • As per enter image description here

  • Related