How do I make background in Makie transparent

for me it worked

using CairoMakie
f = Figure(backgroundcolor = :transparent)

Axis(f[1, 1], backgroundcolor = :transparent)
lines!(1:10)

save("test.png", f)

2 Likes