By default only the last value is displayed, but you can manually call display, e.g.
using UnicodePlots
plt1 = boxplot(["apples", "oranges", "bananas"], [rand(20), rand(20), rand(20)])
plt2 = barplot(["apples", "oranges", "bananas"], [sum(rand(20)), sum(rand(20)), sum(rand(20))])
display(plt1)
display(plt2)