When using a scatter3d type, it seems that the xaxis, yaxis and zaxis layout options are all ignored.
This is a file using scatter3d
This is the same file, but using scatter
As you can see, the 2d scatter takes the axis settings into account, but the 3d scatter doesn't.
To use those options with scatter3d charts you can wrap them in the scene object.
Here's your codepen example edited: http://codepen.io/plotly/pen/qNapRJ
Here's the scene reference: https://plot.ly/javascript/reference/#layout-scene
(We'll add some additional examples to: https://plot.ly/javascript/#layout-options)
Oh, that's perfect - thank you!
No problem. That point is not currently exhibited clearly in our js docs (https://github.com/plotly/documentation/issues/439), thanks for pointing that out!
Most helpful comment
To use those options with scatter3d charts you can wrap them in the
sceneobject.Here's your codepen example edited: http://codepen.io/plotly/pen/qNapRJ
Here's the
scenereference: https://plot.ly/javascript/reference/#layout-scene(We'll add some additional examples to: https://plot.ly/javascript/#layout-options)