Re: [Matplotlib-users] configuring colorbar labels on a black background

2010-02-24 Thread Jim Vickroy
Jae-Joon Lee wrote: This seems to be a bug and I recommend you to file a bug. This happens because Axis.set_ticklabels method only changes the attributes of left (or bottom) tick labels. Meanwhile, try for t in colorbar.ax.get_yticklabels(): t.set_color(w) -JJ Thanks for the

[Matplotlib-users] configuring colorbar labels on a black background

2010-02-23 Thread Jim Vickroy
Hello, I'm (unsuccessfully) trying to generate a figure (with a labeled colorbar) having a black background. Here is the code. _purpose_ = 'demonstrate capability to create PNG with black background including labeled color bar' _author_ = 'jim.vick...@noaa.gov' import numpy #

Re: [Matplotlib-users] configuring colorbar labels on a black background

2010-02-23 Thread Jae-Joon Lee
This seems to be a bug and I recommend you to file a bug. This happens because Axis.set_ticklabels method only changes the attributes of left (or bottom) tick labels. Meanwhile, try for t in colorbar.ax.get_yticklabels(): t.set_color(w) -JJ On Tue, Feb 23, 2010 at 11:03 AM, Jim Vickroy