Re: [Matplotlib-users] Top/Right Tick Labels

2010-01-22 Thread Andrew Kelly
So twiny() is up and running with a FixedLocator and Formatter for the ticks on the upper xAxis but am now unable to rotate these tick labels. Is there a special method to set the rotation, etc with FixedLocators? On Thu, Jan 21, 2010 at 3:09 PM, Jae-Joon Lee wrote: > On Thu, Jan 21, 2010 at 2:

Re: [Matplotlib-users] Top/Right Tick Labels

2010-01-21 Thread Jae-Joon Lee
On Thu, Jan 21, 2010 at 2:31 PM, Andrew Kelly wrote: > Turning label2On = true turned on the labels as directed.  However, the > function  label2.set_text("New Tick Label")     does not update the > actual text.  I can set_size(), etc and it works, but set_text() does not > update.  Any ideas

Re: [Matplotlib-users] Top/Right Tick Labels

2010-01-21 Thread Andrew Kelly
Turning label2On = true turned on the labels as directed. However, the function label2.set_text("New Tick Label") does not update the actual text. I can set_size(), etc and it works, but set_text() does not update. Any ideas why? -Andrew On Thu, Jan 21, 2010 at 10:32 AM, Jae-Joon Lee

Re: [Matplotlib-users] Top/Right Tick Labels

2010-01-21 Thread Jae-Joon Lee
On Thu, Jan 21, 2010 at 1:16 PM, Andrew Kelly wrote: > (Part of my confusion stems from the fact that I can access the Tick > instances on the Axis but when I call Tick.set_label2("New Label") the label > does not get drawn.  Perhaps I am being daft.) > http://matplotlib.sourceforge.net/api/axis_

[Matplotlib-users] Top/Right Tick Labels

2010-01-21 Thread Andrew Kelly
Can someone point out how to simply label the ticks on the top and right of a plot? twinx() and twiny() are not necessary because I don't need independent scales and the mpl_toolkits.axes_grid.parasite_axes module is a bit too limiting for my purposes. (Part of my confusion stems from the fact th