Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to apply spany to dual axes? #319

Closed
zxdawn opened this issue Jan 7, 2022 · 1 comment
Closed

How to apply spany to dual axes? #319

zxdawn opened this issue Jan 7, 2022 · 1 comment

Comments

@zxdawn
Copy link

zxdawn commented Jan 7, 2022

Description

I wanna only to show the label of rightest dual y-axis.

Steps to reproduce

import proplot as pplt

fig, axs = pplt.subplots(nrows=3, ncols=3, spany=0)

axs.format(
    xformatter='null', ylabel='pressure (hPa)',
    ylim=(1000, 100), xlocator=[],
)

axs.dualy(
    'height', label='Height (km)', ticks=2.5
)

Expected behavior: [What you expected to happen]
image

I can make this work by setting something manually. Is there a better method?
Is it better to apply spany to both yaxis and dual yaxis?

axs_dual = axs.dualy('height', label='', ticks=2.5)
for ax in[axs_dual[2], axs_dual[5], axs_dual[8]]:
    ax.format(ylabel='Height (km)')

Actual behavior: [What actually happened]
image

Proplot version

Paste the results of import matplotlib; print(matplotlib.__version__); import proplot; print(proplot.version)here.

3.5.1
0.9.5.post105
@lukelbd
Copy link
Collaborator

lukelbd commented Jan 13, 2022

I think this is a duplicate of #205.

When I finally implement this, I will also support sharing and spanning for ylabels on the right side and xlabels on the top side even without dual axes. Currently, proplot only supports left and bottom labels, which is arbitrary/annoying.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants