I want to use a dashed line to bound a bar in a twoway. But the legend key insists on putting a solid boundary in addition to the dashed boundary. I only want the dashed boundary. Any ideas? Thanks!

Code:
set scheme stmono2 sysuse auto, clear collapse price, by(foreign) twoway (bar price foreign if foreign==0) || ( bar price foreign if foreign==1, fcolor(black%10) lcolor(black) lpattern(dash)), xla(0 `"`: label (foreign) 0'"' 1 `"`: label (foreign) 1'"')
Comment