Thanks so much JJ! It works great.
carlo
Jae-Joon Lee wrote:
>
> If you want full control of label coordinates, you need to use
> "Axis.set_label_coords" method. For example,
>
> ax = gca()
> ax.xaxis.set_label_coords(0.5, -0.1)
>
> And alternative way is to adjust the padding between the ax
If you want full control of label coordinates, you need to use
"Axis.set_label_coords" method. For example,
ax = gca()
ax.xaxis.set_label_coords(0.5, -0.1)
And alternative way is to adjust the padding between the axis and the label.
ax.xaxis.labelpad = 0
Regards,
-JJ
On Mon, Mar 21, 2011 at
Hello all,
I am trying to change the position of the xlabel/ylabel with respect to the
xaxis/yaxis. Particularly, I was trying to get the "xlabel" closer to the
"xaxis" and the "ylabel" closer to the "yaxis", for which I was using the
lines indicated with '#<---' in the following sample code: