3D Scatter Plots in Dash syntax

Hi! Sorry for the delayed reply. What types of code examples would you like? I can paste in my example of the plot in the ‘html’ but also the logic portion of how I generate the plot.

This is my return statement for the plot. I have posted it before so it may be what you are looking for as well:

return {

‘data’: traces,
‘layout’: go.Layout(
scene = {
‘xaxis’: {
‘title’: 'X: ’ + xaxis_column_name_3d,
‘type’: ‘linear’ if xaxis_type_3d == ‘Linear’ else ‘log’,
},
‘yaxis’: {
‘title’: 'Y: ’ + yaxis_column_name_3d,
‘type’: ‘linear’ if yaxis_type_3d == ‘Linear’ else ‘log’,
},
‘zaxis’: {
‘title’: 'Z: ’ + zaxis_column_name_3d,
‘type’: ‘linear’ if zaxis_type_3d == ‘Linear’ else ‘log’,
},
},
margin={‘l’: 40, ‘b’: 40, ‘t’: 10, ‘r’: 10},
legend={‘x’: 1, ‘y’: 1},
hovermode= ‘closest’

    )

}