Re: [Matplotlib-users] define color cycle in matplotlibrc

2009-12-24 Thread Dominik Szczerba
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 OK I started hacking and added a color_cycle property to matplotlibrc. Would you be so kind to add this fix to the official version? Thanks! Dominik $ diff -w axes.py axes.py.org 135,137c135 # DSZ take defaultColors from rcParams #

[Matplotlib-users] yticks/ylabel on the right

2009-12-24 Thread Maximilian Fabricius
Hello, I apologize if this is the n-th time this question is asked. I wondered what the canonical way is to gel the yticks and the ylabel on the right hand side of a plot rather than on the left. Merry xmas! Maximilian --

Re: [Matplotlib-users] yticks/ylabel on the right

2009-12-24 Thread Dominik Szczerba
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I once had the same problem and the solution was rather complicated, involving the artist interface I believe. Unfortunately, I can not find it any longer as the mailing list archives are not searchable. Dominik Maximilian Fabricius wrote: Hello,

Re: [Matplotlib-users] yticks/ylabel on the right

2009-12-24 Thread Jae-Joon Lee
ax = gca() ax.yaxis.set_ticks_position(right) # ticks and ticklabels ax.yaxis.set_label_position(right) # axis label -JJ On Thu, Dec 24, 2009 at 8:34 AM, Maximilian Fabricius m...@gmx.net wrote: Hello, I apologize if this is the n-th time this question is asked. I wondered what the canonical