Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a code like this:

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

legend fontsize

It can be seen in the plot that the setting in Fontsize does not affect the Legend Title font size.

How to set the font size of the legend title to a smaller size?

share|improve this question

3 Answers

I don't know how to set it up for an individual plot, but I always do it globally:

plt.rc('legend',**{'fontsize':6})
share|improve this answer

Here is how to change the fontsize of the legend list and/or legend title:

legend=plt.legend(list,loc=(1.05,0.05), title=r'$\bf{Title}$') #Legend: list, location, Title (in bold)
legend.get_title().set_fontsize('6') #legend 'Title' fontsize
plt.setp(gca().get_legend().get_texts(), fontsize='12') #legend 'list' fontsize
share|improve this answer
Can you please help me in merging the code piece you have proposed with mine? I'm seeing some errors when I add this piece to the code I have. Specifically: Traceback (most recent call last): <file> in <module> legend=plt.legend(list,loc=(1.05,0.05), title=r'$\bf{Title}$') #Legend: list, location, Title (in bold) File "C:\Python26\Lib\site-packages\matplotlib\pyplot.py", line 2800, in legend ret = gca().legend(*args, **kwargs) File "C:\Python26\Lib\site-packages\matplotlib\axes.py", line 4494, in legend labels)] TypeError: zip argument #2 must support iteration – Tapajit Dey Feb 6 at 12:15

I generally do in this way. Once the plot has been done i do the following

plt.legend(loc=0, numpoints=1)
leg = plt.gca().get_legend()
ltext  = leg.get_texts()
plt.setp(ltext, fontsize='small') 

I don't know if this works for you

share|improve this answer
In ipython notebook, I just do setp(gca().get_legend().get_texts(), fontsize='small'). – Ondřej Čertík Jan 4 at 16:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.