Subplots woes with plotlyjs backend

I’m encountering unexpected behavior when attempting to plot subplots with the plotlyjs backend. Minimal example:

using Plots
plotlyjs()
plot(rand(100,4),layout=4)

The output produced is below. The first plot is huge and the next three overlay it. newplot

Apologies if I am missing something simple. I am using:

julia version 1.0.1
[f0f68f2c] PlotlyJS v0.12.2
[91a5bcdd] Plots v0.22.4

I have done a Pkg.update() and Pkg.resolve(). Any help would be much appreciated!

I don’t have the same issue as yours with 2D plots, but I have an issue with 3D plots

plot(
    plot(rand(100), legend = false),
    scatter3d(rand(100), rand(100), rand(100))
    ) |> display

newplot

I’m open to suggestions

1 Like