Plots.jl - 关闭轴线和网格线

Plots.jl - Turn off axis and grid lines

我正在尝试制作没有轴和网格线的曲面图。我发现我可以用 grid = false 关闭网格,但我找不到删除轴线的方法。

surface(x2d, y2d, z2d, fill_z = color_mat, fc = :haline, grid=false)

谢谢!

你几乎可以用 ticks = false.

摆脱它们

axis=([], false) 应该可以解决问题

尝试 showaxis = false,如 axis attributes documentation 中所述。

这是一个对我有用的例子(在 Plotly 后端)。

surface(-10:10, -10:10, (x, y) -> x^2 - y^2, showaxis = false)