Makie.jl x and y axis through origin (0, 0)

Not as an option of the axis, currently. But you can do

f, ax, s = scatter(randn(200, 2))
vlines!(ax, 0, color = :black)
hlines!(ax, 0, color = :black)
hidespines!(ax)
f

3 Likes