Hi, I’m trying to change default spikeline and contour behaviors as indicated at:
However, graph_objs in the current version at least, does not have a go.layout.scene attribute.
specifically
contours=go.surface.Contours(
x=go.surface.contours.X(
highlight=True,
highlightcolor="#41a7b3",
),
y=go.surface.contours.Y(highlight=False),
z=go.surface.contours.Z(highlight=False),
)
produces
AttributeError: module ‘plotly.graph_objs’ has no attribute ‘surface’
Has the object model changed? is this still possible to do?
Thanks!