>>>>> "Michael" == Michael Fitzgerald <[EMAIL PROTECTED]> writes:

    Michael> Hi all,

    Michael> I'm seeing some unexpected behavior when trying to hide a
    Michael> tick label, which I like to do with ganged plots.  When I
    Michael> attempt this, however, it seems the axis label is no
    Michael> longer drawn.  For example,

    Michael> x = arange(5) ax = subplot(111) ax.plot(x, x) xtl =
    Michael> ax.get_xticklabels() xtl[0].set_visible(False)
    Michael> ax.set_xlabel('foo')

    Michael> will correctly not draw the leftmost x tick label, but it
    Michael> won't draw the axis label ('foo') either.  Subsequently
    Michael> issuing ax.get_xaxis ().get_label().set_visible(True)
    Michael> doesn't help.  Any thoughts?

I just fixed this in svn -- the xlabel gets it's position by
examining the bounding boxes of all the tick labels, and wasn't
handling the invisible tick bounding box properly.  This is fixed in
svn.

Thanks for the report and example.
JDH

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to