Hi, I’m gonna bother you again. Are you familiar with layouts ? How would you modify your Interact.jl example so to have the sliders next to the plot instead of above ? I tried using the @layout! macro after the @manipulate one.
using Interact, Plots
mp = @manipulate throttle=.05 for λ=0:.1:5, μ=0:.1:5
xs = range(0.0, 1.0, length = 100)
Plots.plot(xs, x -> λ*x^2 + μ)
end
@layout! hbox(vbox(λ,μ), mp)
(I did not need Mux since I work in Juno)