Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork8.1k
FIX constrained_layout w/ hidden axes#14919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -272,7 +272,11 @@ def _make_layout_margins(ax, renderer, h_pad, w_pad): | ||
| invTransFig = fig.transFigure.inverted().transform_bbox | ||
| pos = ax.get_position(original=True) | ||
| tightbbox = ax.get_tightbbox(renderer=renderer) | ||
| if tightbbox is None: | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Just: MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I find those really hard to read a lot of the time. Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Actually, when reading a function for a basic understanding what it does I find this more easy. It's just one line saying: "Sets But not fighting over this. | ||
| bbox = pos | ||
| else: | ||
| bbox = invTransFig(tightbbox) | ||
| # this can go wrong: | ||
| if not (np.isfinite(bbox.width) and np.isfinite(bbox.height)): | ||
| # just abort, this is likely a bad set of co-ordinates that | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -387,3 +387,16 @@ def test_colorbar_location(): | ||
| fig.colorbar(pcm, ax=axs[-2, 3:], shrink=0.5, location='top') | ||
| fig.colorbar(pcm, ax=axs[0, 0], shrink=0.5, location='left') | ||
| fig.colorbar(pcm, ax=axs[1:3, 2], shrink=0.5, location='right') | ||
| def test_hidden_axes(): | ||
dstansby marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
| # test that if we make an axes not visible that constrained_layout | ||
| # still works. Note the axes still takes space in the layout | ||
| # (as does a gridspec slot that is empty) | ||
| fig, axs = plt.subplots(2, 2, constrained_layout=True) | ||
| axs[0, 1].set_visible(False) | ||
| fig.canvas.draw() | ||
| extents1 = np.copy(axs[0, 0].get_position().extents) | ||
| np.testing.assert_allclose(extents1, | ||
| [0.045552, 0.548288, 0.47319, 0.982638], rtol=1e-5) | ||