You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an upcoming version I'd like to support "outer" colorbars and legends spanning arbitrary contiguous subplots -- not just "figure-wide" colorbars along the figure edge. Here's a matplotlib example from this page (the top-left colorbar is what I'm thinking of... except as before, proplot would preserve colorbar widths and subplot aspect ratios):
This shouldn't be too hard to implement, and will have the benefit of unifying the clunky internal implementation of "axes-type" and "figure-type" colorbars and legends.
This is also an area where SubplotGrid could really start to shine -- similar to SubplotGrid.format, which calls figure.format(axs=axs) using the axes in the grid, I can implement SubplotGrid.colorbar and SubplotGrid.legend that respectively call figure.colorbar(axs=axs) and figure.legend(axs=axs). This would be really succinct and intuitive -- for example, if someone has a 2-row, 3-column figure, then to draw a bottom colorbar spanning the top and bottom rows, the syntax would be axs[0, :].colorbar(m, loc='bottom') followed by axs[1, :].colorbar(loc='bottom').
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
In an upcoming version I'd like to support "outer" colorbars and legends spanning arbitrary contiguous subplots -- not just "figure-wide" colorbars along the figure edge. Here's a matplotlib example from this page (the top-left colorbar is what I'm thinking of... except as before, proplot would preserve colorbar widths and subplot aspect ratios):
This shouldn't be too hard to implement, and will have the benefit of unifying the clunky internal implementation of "axes-type" and "figure-type" colorbars and legends.
This is also an area where
SubplotGrid
could really start to shine -- similar toSubplotGrid.format
, which callsfigure.format(axs=axs)
using the axes in the grid, I can implementSubplotGrid.colorbar
andSubplotGrid.legend
that respectively callfigure.colorbar(axs=axs)
andfigure.legend(axs=axs)
. This would be really succinct and intuitive -- for example, if someone has a 2-row, 3-column figure, then to draw a bottom colorbar spanning the top and bottom rows, the syntax would beaxs[0, :].colorbar(m, loc='bottom')
followed byaxs[1, :].colorbar(loc='bottom')
.The text was updated successfully, but these errors were encountered: