-
-
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
Cycle is broken for Overlay #1081
Comments
This is high priority, I'll investigate tomorrow. |
This seems pretty bad and I don't know how this hasn't gotten caught sooner. In 1.4.3 this: elements = [hv.Curve(np.random.rand(10)) * hv.HLine(0) for i in range(4)]
overlay = hv.Overlay(elements)
print(repr(overlay)) produces this:
In 1.7 it produces this: :Overlay
.Overlay.I :Overlay
.Curve.I :Curve [x] (y)
.HLine.I :HLine [x,y]
.Overlay.II :Overlay
.Curve.I :Curve [x] (y)
.HLine.I :HLine [x,y]
.Overlay.III :Overlay
.Curve.I :Curve [x] (y)
.HLine.I :HLine [x,y]
.Overlay.IV :Overlay
.Curve.I :Curve [x] (y)
.HLine.I :HLine [x,y] Somewhere along the line we broke how Overlays are nested 😱 I'll have to bisect tomorrow to see when this happened. |
My fault:
|
Ah right..because |
Finally fixed! Closing. |
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. |
This used to work in v1.4.3
However this:
produces:
The text was updated successfully, but these errors were encountered: