Plots.jl - Turn off axis and grid lines

I am trying to make a surface plot without axis and grid lines. I found that I can turn off the grid using grid = false, but I cannot find a way to remove the axes.

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

enter image description here

Thank!

+4
source share
1 answer

You can almost, but not quite get rid of them with the help ticks = false.

+4
source

Source: https://habr.com/ru/post/1679531/


All Articles