Need help to adjust axis limit of live plot with makie

solved it by :

limits = lift((x,y) -> FRect(to_value(x)[1], minimum(to_value(y1))-2, (to_value(x)[end]-to_value(x)[1])+5, maximum(to_value(y1))+5),x,y1)

plot1=lines!(scene, x, y1,limits=limits)

thank you my self :smiley:

1 Like