Re: [Matplotlib-users] bug in mpl_toolkits.axes_grid1.AxesGrid?

2011-05-31 Thread Jae-Joon Lee
Using AxesGrid does not mean that color scales are shared. It only takes care of axes placement. And it is your responsibility to sync colorbars of multiple images. One option is to use *norm* attribute of images. norm = matplotlib.colors.Normalize() for i in range(3): im =

[Matplotlib-users] bug in mpl_toolkits.axes_grid1.AxesGrid?

2011-05-24 Thread Paul Anton Letnes
Hi! I am wondering if there is a bug in: mpl_toolkits.axes_grid1.AxesGrid I am trying to run this example (I am of course working on something else, but I am trying to build a minimal example of my problem): http://matplotlib.sourceforge.net/examples/axes_grid/demo_axes_grid.html This would be