-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
Large layouts do not display #1026
Comments
Is there instead an option that determines how large a layout can be and still be displayed, which could be set to infinity by a user that always wants to see large layouts? That said, four items doesn't sound like a large layout. |
It should at least give a warning that it does not display because it is to large + explanation how to show it. Furthermore, the behaviour of +, Layout, hmap.layout should be identical. |
I agree on all counts! |
I also agree. I think issuing a warning and ensuring consistent behavior regardless of how the Layout is constructed is something we could fix for 1.7. |
I say we throw out the if isinstance(layout, Layout) and len(layout.data) * nframes > max_frames:
max_frame_warning(max_frames)
return '<tt>'+ sanitize_HTML(layout) + '</tt>' |
Now implemented, we no longer check the number of branches on the Layout now and the |
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. |
A larger layout is not displayed when created with hv.Layout.
Works:
a[0]+a[1]+a[2]+a[3]
Does not work:
hv.Layout(a)
But returns
Current solution:
hv.Layout(a).display('all')
Proposition
always display large layouts
The text was updated successfully, but these errors were encountered: