Plot histogram with edge color in Plots.jl

Can one plot a histogram in Plots.jl where only the outer line is plotted, like in this picture?
COOZE

In PyPlot this is set be edgecolor but I did not find a way to do this in Plots with gr.

This should work

julia> using Plots
julia> stephist(randn(100), fill=true, fillalpha=0.5)
2 Likes

How do I leave the outer contour as a solid line?

Figured it out.

julia> using Plots
julia> stephist(randn(100), fill=true, fillalpha=0.5, color=:black, fillcolor=:red)
2 Likes