Hi, I’m making a figure with Plots.jl and GR backend.
I have an issue as the figure does not fully fit in the frame: the colorbar annotations are cut out on the right side.
Is there a simple workaround for this (else than using another package or changing units)? Thanks and cheers!
Below is a MWE:
x = LinRange(-180, 180, 100)
y = LinRange(-90, 90, 100)
A = x.*1e-15 .+ 0 .*y'
plot(title="Title")
plot!(xlabel="x", ylabel="y")
heatmap!(x, y, A', colorbar=:legend)