This is the figure I am producing:
but I want the left side of the plotted elements go up to exactly the very last pixel of the figure. I am not able to figure out how to achieve that. I am doing:
t = 0:100
x = cos.(t)
fig = Figure(padding = 0)
ax = Axis(fig[1,1])
lines!(ax, t, x)
hidespines!(ax)
hidedecorations!(ax)
xlims!(ax, t[1], t[end])
fig
but the left side always has some padding.
