JuliaPlots / JuliaPlots/PlotlyJS.jl

hbox(p1,p2) emits StackOverflowError

Open
#311 6 comments 0 reactions 0 assignees View on GitHub
help wanted
Dominant language
Julia
Stars
444
Forks
86
PR merge metrics
No merged PRs in 30d

Description

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)
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.