We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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'])
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.
invert_yaxis
This is using holoviews 1.11.0a8.
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
Compare the following:
When viewing a single cell:
Versus a layout:
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.
The text was updated successfully, but these errors were encountered: