Spencer Lyon
Spencer Lyon
Thanks @empet good help! There is a pretty recent function called `to_html` that implements more of the options from Python's `write_html`: ``` help?> PlotlyBase.to_html to_html( io::IO, p::Plot; autoplay::Bool=true, include_plotlyjs::Union{String,Missing}="cdn", include_mathjax::Union{String,Missing}="cdn",...
Hey @staticfloat thanks for bringing this up. When I run your code an inspect the json that is generated we get ``` julia> print(JSON.json(p, 2)) { "layout": { "barmode": "group",...
This should work in the same way. Here's what that example should look like in julia: ```jlcon julia> using PlotlyJS julia> trace1 = scatter(x=[0,0.5,1,2,2.2],y=[1.23,2.5,0.42,3,1]); julia> layout = Layout( images=[attr( source="https://images.plot.ly/language-icons/api-home/python-logo.png",...
I see. I would be glad to have this feature in the library, but won't be able to implement it myself any time soon. If you are interested in trying...
hi @ericmsmythe There is some tricky work to be done to know how to properly place annotations and shapes within a chart that has subplots. For that reason, we intentionally...
Thanks for opening this. I think it probably makes sense to transpose the z matrix for the heat map. That being said, I don't know that PlotlyJS currently has the...
Thanks @tbreloff -- that's very helpful.
Now that the PlotlyBase side has been merged, hopefully I'll be able to review this one soon. Thanks for the contributions and for the patience!
Very good debugging. When we first added Juno support the large margins didn't look very good, so we made them smaller. I don't recall where we make that change, but...
Interesting, Is `hbox` from Interact.jl? If so, perhaps we can ping someone from there to help with the discussion