Hi, I have a curious phenomenon here which seemingly appeared from nowhere. I am doing a simple plot (using Plots) and saving it to a file ; but the saved version seems to be transparent.
The MWE is
using Plots
heatmap(rand(8,8))
p=plot!(aspect_ratio=:equal, colorbar=false, axis=([], false))
savefig(p, "test.png")
and here is what I get in my editor : left is my notebook showing the picture, right is the saved picture.
For me, p=plot!(aspect_ratio=:equal, colorbar=false, axis=([], false)) produces transparent plots both in the REPL and when saving the picture as a PNG. I’ll check it ASAP.