Hi,
Is there a direct way with plotly express to hide the ticks of all the three axis on a 3D scatterplot.
fig = px.scatter_3d(d, x='d1', y='d2', z='d3', color='cluster')
fig.update_traces(marker=dict(size=3))
fig.update_layout(title_text='Document embeddings', title_x=0.5, showlegend=False)
fig.update_xaxes(showticklabels=False)
fig.update_yaxes(showticklabels=False)
This is what I can get from the docs so far but it is not hidding any axis
Thanks!