We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The *axis_title properties do not work on 3D plots. As a simple example:
*axis_title
using PlotlyJS plot(scatter3d(x=rand(10), y=rand(10), z=rand(10), mode="markers"), Layout(xaxis_title="X axis", yaxis_title="Y axis", zaxis_title="Z axis", title="Title"))
Produces the following figure (notice the axis labels are still the default):
The text was updated successfully, but these errors were encountered:
I believe for some reason you need to add these properties to the Layout.scene property
Something like this should work:
using PlotlyJS plot(scatter3d(x=rand(10), y=rand(10), z=rand(10), mode="markers"), Layout(scene=attr(xaxis_title="X axis", yaxis_title="Y axis", zaxis_title="Z axis", title="Title")))
AFAIK this only applies to 3d plots
Sorry, something went wrong.
That works, thanks!
No branches or pull requests
The
*axis_title
properties do not work on 3D plots. As a simple example:Produces the following figure (notice the axis labels are still the default):
The text was updated successfully, but these errors were encountered: