> Hi,
>I think there is bug in get_xticklabels(). According to the doc it
> should return a list of Text instances, instead it returns a list of
> TextWithDash instances. This also makes the following impossible (which
> should work of course):
>
> xtl = ax.get_xticklabels()
> ax.set_xtickl
Hi,
I think there is bug in get_xticklabels(). According to the doc it
should return a list of Text instances, instead it returns a list of
TextWithDash instances. This also makes the following impossible (which
should work of course):
xtl = ax.get_xticklabels()
ax.set_xticklabels(xtl)
Manu