私はこのようなコードを持っています:
import matplotlib.pyplot as plt
from matplotlib.pyplot import *
from matplotlib.font_manager import FontProperties
fontP = FontProperties()
fontP.set_size('xx-small')
fig=plt.figure()
ax1=fig.add_subplot(111)
plot([1,2,3], label="test1")
ax1.legend(loc=0, ncol=1, bbox_to_anchor=(0, 0, 1, 1),
prop = fontP,fancybox=True,shadow=False,title='LEGEND')
plt.show()
Fontsize の設定が Legend Title のフォント サイズに影響しないことがプロットで確認できます。
凡例のタイトルのフォント サイズを小さいサイズに設定するにはどうすればよいですか?