AIMPED
June 30, 2024, 6:15pm
3
Hey @johann.petrak Iḿ not sure what you are referring to. You can actually opt to not plot the the background colors of the axes, if that is what you call “box”
Hi,
I have a sample 3d plot (shown in the following) and as you see the side walls (Backgrounds) are colored.
import plotly.graph_objects as go
import numpy as np
t = np.linspace(-1, 1.2, 500)
x = (t**3) + (0.3 * np.random.randn(500))
y = (t**6) + (0.3 * np.random.randn(500))
z=(t**2) + (0.3 * np.random.randn(500))
fig = go.Figure()
fig.add_scatter3d( x = x, y = y, z = z,
mode = 'markers',
marker = dict( color = 'rgba(0,0,0,0.3)', size = 3)
)
fig.update_layout(
auto…