Plots.jl - 关闭轴和网格线

时间:2017-06-17 19:59:56

标签: julia plots.jl

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

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

enter image description here

谢谢!

3 个答案:

答案 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)