Open
Description
If we create a figure and then resize it, the colorbar is no longer correct. We need to add f.canvas.mpl_connect('resize_event', func)
.
%matplotlib
import mplotutils as mpu
import matplotlib.pyplot as plt
f, axs = plt.subplots(2)
axs = axs.flatten()
h = axs[0].pcolormesh([[0]], [[1]], [[1]])
cbar = mpu.colorbar(h, axs[0], axs[1])
f.set_size_inches(f.get_size_inches() * [0.75, 1], forward=False)
However, there seems no easy way to test this.
Metadata
Metadata
Assignees
Labels
No labels