-
-
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
Adjoint overlay #1213
Adjoint overlay #1213
Conversation
A screenshot/example would be good to illustrate the new behavior. |
dbc87aa
to
8a3b3dd
Compare
Here's an example: hv.Image(np.random.rand(10,10)).hist() * hv.Text(0,0, 'A') Works the same for HoloMaps and DynamicMaps: hv.HoloMap({i: hv.Image(np.random.rand(10,10)) for i in range(5)}).hist() * hv.Text(0,0, 'A') The overlaying of adjoined plots works too, however overlaid adjoined plots don't behave particularly well currently so I'll open another issue about that. For now it's mostly useful for being able to overlay the main plot. |
Thanks! |
a03b442
to
f12b101
Compare
Looks good - happy to merge once it is ready and the tests pass. |
Travis has somehow decided not to run a PR build, or it's just being slow. |
Looks like it's not going to, but there should be no failures in this PR and since the branch is up to date with master the push and PR builds are equivalent anyway. Merge away once it passes. |
Appears to be an persisting py3 issue, so going to have to start another build anyway. |
f12b101
to
afa88e3
Compare
Ready. |
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Implement overlaying of AdjointLayouts as originally outlined in #987.