twinx, second axis

Hello all,

When using twinx(), how do I keep the second axis from drawing xticklabels?
The default rewrites the xticklabels, making them blurry. I tried this:
    ax2 = twinx()
    plot(xvals, yvals, 'g')
    ax2.set_xticklabels([])
But that turns off ALL xticklabels (even for the original axis).

-Charles

···

--
Charles R. Twardy