These black lines are showing up on the surface plots which Iโm using to shade the top and bottom faces of my cube.
I canโt seem to turn them off so that nothing appears and moves around when you hover over the plot. Any ideas?
# add any shaded planes
FACE_OPACITY = 0.1
TOP_FACE = [[1, 1], [1, 1]]
fig.add_trace(
go.Surface(
z=TOP_FACE,
showscale=False,
opacity=FACE_OPACITY,
colorscale=[[0, "grey"], [1, "grey"]],
name="Top Face",
)
)