[Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Hello, The question is in the title :) Cheers! Fabien -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond.

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Nelle Varoquaux
Hello Fabien, There is a font size attribute to ``legend``. Here is the description from the docstring: *fontsize*: [ size in points | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ] Set the font size. May be either a size string, relative to the

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Mark Lawrence
On 31/08/2012 14:42, Fabien Lafont wrote: Hello, The question is in the title :) Cheers! Fabien I don't wish to appear rude as this list is associated with the Python language, but do you ever try a search engine before you ask a question? -- Cheers. Mark Lawrence.

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Actually I had some problems to find the solution on the web. Finally I've used: matplotlib.rcParams['legend.fontsize'] = 25.0 and it works well Fabien 2012/8/31 Mark Lawrence breamore...@yahoo.co.uk On 31/08/2012 14:42, Fabien Lafont wrote: Hello, The question is in the title :)

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabrice Silva
To avoid (not so) rude answer like Mark's one, please try first to refer to: - the documentation of the pyplot's commands you use http://matplotlib.sourceforge.net/api/pyplot_api.html It tries (pretty well IMHO) to be comprehensive, at least for 99% of use cases, - you can set, once for all, the

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Mark Lawrence
On 31/08/2012 16:32, Fabrice Silva wrote: To avoid (not so) rude answer like Mark's one, please try first to refer to: - the documentation of the pyplot's commands you use http://matplotlib.sourceforge.net/api/pyplot_api.html It tries (pretty well IMHO) to be comprehensive, at least for 99%