I have a histogram in Stata and want to plot two vertical lines in front of it. However, when I use xline(), the lines are always in the background. How can I put the two additional lines in the front?
Code:
histogram var1, fraction xline(0.0, lcolor(black)) xline(0.046, lcolor(red) lpattern(dash))
Comment