WGLMakie - share Figure

Hi =)

I would like to create an interactive plot using :

using WGLMakie
WGLMakie.activate!()
f = Figure(; size = (1000, 800))
ax1 = Axis3(f[1, 2], aspect = (1, 1, 1.5),
xlabel = "x [m]",ylabel = "y [m]",zlabel = "z [m]")
#,  colorrange = (-300,300) , colorrange = (0,1200)
 hm = lines!(ax1, coord_x, coord_y, coord_z, color = data_helice[:,time_viz_index], colormap = :jet, linewidth = 5, colorrange = (0,800)) #
Colorbar(f[1, 1], hm, label="Strain [μϵ]", height=Relative(0.5))  # , ticks = 0:400:1200
f
save("Figure_interactive.html", f)

I have two main issues. First, the figure displays correctly the first time I open it, but it does not appear on subsequent attempts. Second, I am unable to open the figure on another laptop.

Can you help ? =)
Thanks,
N.S

2 Likes