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

Issue using invert_yaxis across a layout #3082

Closed
jlstevens opened this issue Oct 12, 2018 · 1 comment
Closed

Issue using invert_yaxis across a layout #3082

jlstevens opened this issue Oct 12, 2018 · 1 comment
Labels
type: bug Something isn't correct or isn't working
Milestone

Comments

@jlstevens
Copy link
Contributor

Compare the following:

import holoviews
import numpy as np
import xarray as xr

ims = [xr.DataArray(np.random.rand(50,50), dims=['x','y'], 
                    coords={'x':np.arange(50), 'y':np.arange(50)}) for i in range(2)]

When viewing a single cell:

%%opts Image [invert_yaxis=True]
hv.Image(ims[0], kdims=['x', 'y'])

Versus a layout:

%%opts Image [invert_yaxis=True]
hv.Image(ims[0], kdims=['x', 'y']) + hv.Image(ims[1], kdims=['x', 'y'])

image

The layout requires panning upwards to see the data (which is there but not in the region initially shown) but only when invert_yaxis is specified.

This is using holoviews 1.11.0a8.

@jlstevens jlstevens added the type: bug Something isn't correct or isn't working label Oct 12, 2018
@philippjfr philippjfr added this to the v1.10.8 milestone Oct 25, 2018
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 24, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
type: bug Something isn't correct or isn't working
Projects
None yet
Development

No branches or pull requests

2 participants