How do I get rid of this vertical line (see yellow mark) in my hbar-chart? Below an MWE. I want to keep the category names (i.e. "Foreign" and "Domestic"), but I just want this axis-line either to be gone or white. How?
Thank you so much!

Thank you so much!
Code:
sysuse auto, clear
graph hbar (mean) price , ///
over(foreign, sort(1) descending label(labsize(small))) ///
graphregion(color(white) lcolor(white)) ///
plotregion(color(white) lcolor(white)) ///
ylabel(none, noticks labsize(small)) ///
ytitle("") ///
yscale(noline) ///
legend(off)

Comment