You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the older interface [plot1, plot2] to make subplots broke. I was going to make an MWE but in the docs is already showing the same issue I have
The syntax for a 1x2 array of subplots would now be [p1 p2]
To make it 2x1 you would do [p1; p2]
To make it 2x2 you could do
[p1 p2; p3 p4]
## OR
[p1 p2
p3 p4]
While we lost the , version, for an Nx1 figure of subplots, the main benefit is that we can now construct arrays of plots in a manner more consistent with how the rest of Julia arrays work.
I will update the docs to try to fix this problem!
Please comment or re-open if you have additional questions or issues
It seems the older interface
[plot1, plot2]
to make subplots broke. I was going to make an MWE but in the docs is already showing the same issue I havehttp://juliaplots.org/PlotlyJS.jl/dev/examples/subplots/
The text was updated successfully, but these errors were encountered: