When plotting multiple plots into an Axis
in Makie, is it possible to exclude some of them from being accounted for when automatic axis limit calculation is performed? Something like
fig = Figure()
ax = Axis(fig[1,1])
lines!(ax, ...)
lines!(ax, ...; ignorelimits=true)
where only the first line plot would be used in calculating the limits of ax
.