I am making plots in CairoMakie.jl
(v0.10.1) and noticed that the y-axis isn’t quite vertical. It generally looks less tidy than the x-axis.
using CairoMakie
CairoMakie.activate!()
xs = rand(100); ys = rand(100)
fig, axis = scatter(xs, ys)
hidespines!(axis, :t, :r)
axis.xtrimspine = true; axis.ytrimspine = true
hidedecorations!(axis; ticks = false)
save("fig.pdf", fig)
It’s most obvious when the figure is exported. The x-axis looks as I’d expect – very tidy but even the bottom of the y-axis is untidy.
The top of the y-axis is even worse
Is this a known issue? I haven’t found it mentioned elsewhere.