Plots.jl equivalent to Matlab's "axis padded"?

using Plots; gr()
x = 0:12
plot(x, sin, lt=:step, framestyle=:box, label=false)

NB:
that is the default behaviour. In case a tight plot is required, add argument: widen=false

2 Likes