# WGLMakie - share Figure

**URL:** https://discourse.julialang.org/t/wglmakie-share-figure/131162
**Category:** Package Management
**Tags:** question, plotting
**Created:** [July 29, 2025, 8:49am UTC](https://discourse.julialang.org/t/wglmakie-share-figure/131162 "2025-07-29T08:49:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![NaSi](https://avatars.discourse-cdn.com/v4/letter/n/ecae2f/32.png) [@NaSi](https://discourse.julialang.org/u/NaSi)
#### Post date: [July 29, 2025, 8:49am UTC](https://discourse.julialang.org/t/wglmakie-share-figure/131162/1 "2025-07-29T08:49:45Z")

</div>

Hi =)

I would like to create an interactive plot using :

```julia-auto
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
