我正在尝试制作没有轴和网格线的曲面图。我发现我可以使用grid = false
关闭网格,但我找不到删除轴线的方法。
surface(x2d, y2d, z2d, fill_z = color_mat, fc = :haline, grid=false)
谢谢!
答案 0 :(得分:4)
你几乎可以用ticks = false
完全摆脱它们。
答案 1 :(得分:3)
axis=([], false)
应该可以解决问题
答案 2 :(得分:0)
尝试 showaxis = false
,如 axis attributes documentation 中所述。
这是一个对我有用的例子(在 Plotly 后端)。
surface(-10:10, -10:10, (x, y) -> x^2 - y^2, showaxis = false)