You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A workaround is to plot each subplot individually, render in an IOStream and then load again the in an aggregating plot(...), i.e.
n = 10
io_buffers = [IOBuffer() for _ in 1:n]
for i in 1:n
plot([1,2,3])
png(io_buffers[i])
end
plot((plot(load(io)) for io in io_buffers)...;
axis=nothing,
border=:none,
layout=(1,10),
size=(500*10,300),
)
Details
In this figure below created by
the space between the axis ticks and the actual axis is too large. I have not found a workaround yet.
Backends
This bug occurs on ( insert
x
below )Versions
Plots.jl version: 1.40.9
Backend version (
]st -m <backend(s)>
): 0.73.8Output of
versioninfo()
:The text was updated successfully, but these errors were encountered: