Adding Title to RadioButtons Axis

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

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

···

On Fri, Aug 5, 2011 at 4:22 AM, Paul Blelloch <paul.blelloch@...3715...> wrote:

title = 'Overlap'