Re: [Matplotlib-users] Adding Title to RadioButtons Axis

2011-08-07 Thread Jae-Joon Lee
On Fri, Aug 5, 2011 at 4:22 AM, Paul Blelloch paul.blell...@ata-e.com wrote: title   = 'Overlap' Did you mean to do title(Overlap) ? And yes it works as expected. If it does not work for you, please post a simple but complete example. -JJ

[Matplotlib-users] Adding Title to RadioButtons Axis

2011-08-04 Thread Paul Blelloch
I'd like to add a title to a RadioButton axis, but the usual title('xxx') seems to get ignored. Can I do that? This is an example: raOVL = axes([0.05, 0.1, 0.15, 0.15], axisbg=axcolor) title = 'Overlap' radioOV = RadioButtons(raOVL, ['10%','30%','50%','70%']) -Paul Blelloch