The motivation here is to use n GridLayout's to plot several independent heatmaps with their corresponding colorbars, taking into account the data aspect ratio. Any ideas?
Looks like this uses GridLayoutBase.tight_bbox internally. Perhaps the solution is to simply change the widths of each grid layout recursively as well?
Doing the following:
gives a nice heatmap with a good colorbar.
Now, if we do it with a GridLayout
things are not ok. Bug?
The motivation here is to use
n
GridLayout's to plot several independent heatmaps with their corresponding colorbars, taking into account the data aspect ratio. Any ideas?