PlotlyJS.jl
PlotlyJS.jl copied to clipboard
hbox(p1,p2) emits StackOverflowError
is it not possible to create an interactive graphic with two plots? one button and one plot works, but not two plots.
julia> using Interact, Mux, PlotlyJS, WebIO
julia> b = button()
julia> p1 = plot(rand(10));
julia> p2 = plot(rand(10));
julia> ui = hbox(p1,b); ### this works
julia> ui = hbox(p1,p2) ### this does not
ERROR: StackOverflowError:
julia> WebIO.webio_serve(page("/", req -> ui), 5006)
Interesting, Is hbox from Interact.jl? If so, perhaps we can ping someone from there to help with the discussion
@shashi @piever hbox does not work with two plotly plots. should it?
Yes it should, it's a bug.
Do you know if the the bug is on my end or in Interact.jl?
should i file in issue with Interact.jl, or does this one suffice?
Opening one in Interact.jl would be good!