Re: [Matplotlib-users] Removing the black border around a plot?

2007-03-17 Thread Peter Buschman
sFrame, set it to the color I wanted, and set the inner frame to be invisible. Results are attached.* --PLB At 17:54 15.3.2007, Peter Buschman wrote: Okay, removing the frame turns out to work like this. ax=gca() setp(ax, frame_on=False) ... but changing the complete color still st

Re: [Matplotlib-users] Removing the black border around a plot?

2007-03-15 Thread Peter Buschman
x27;yellow' frame = ax.get_frame() setp(frame, 'edgecolor', axis_edgecolor) Confused... --PLB At 16:58 15.3.2007, Peter Buschman wrote: This is driving me crazy I've tried setting the axes' frame's edgecolor but nothing I try lets me get rid of or change the

Re: [Matplotlib-users] Setting color of both major and minor gridlines?

2007-03-15 Thread Peter Buschman
tick % major_multiple == 0: xmajorticks.append(tick) elif tick % minor_multiple == 0: xminorticks.append(tick) ax.xaxis.set_major_locator(FixedLocator(xmajorticks)) ax.xaxis.set_minor_locator(FixedLocator(xminorticks)) At 15:14 14.3.2007, Peter Buschman

[Matplotlib-users] Setting color of both major and minor gridlines?

2007-03-14 Thread Peter Buschman
Hello: I am trying to set different colors for both major and minor gridlines. In essence, I want the major gridlines to be slightly darker than the minor ones. However, using the syntax below, I can only seem to set the properties of one of the sets of gridlines at a time. If I comment out

[Matplotlib-users] Setting the axes border color?

2007-03-13 Thread Peter Buschman
ax=gca() frame = ax.get_frame() setp(frame, 'linewidth', 1) setp(frame, 'edgecolor', 'blue') Best regards, Peter Buschman - Take Surveys. Earn Cash. Influence the Future of IT Join So