I have a twoway graph pictured and I would like the plot area to be stretched out to meet the y axis title which has veered out to the left. Is there a way that I can do this?

The code to produce the figure is
I have found similar content on aspect ratios but that is not, to my knowledge, exactly what I'm asking. Thank you very much for your help.
The code to produce the figure is
Code:
twoway (scatter coef rowid, msize(med) msymbol(O) mcolor(navy%85) fcolor(navy%85) lcolor(navy%85) ylab(,angle(0) labsize(medlarge)) /// title("title", size(vlarge))) /// (rcap ci_lower ci_upper rowid, lwidth(thin) fcolor(navy%85) lcolor(navy%85) c(1)), /// ytitle("y axis title", size(vlarge)) /// xla(, labcolor(bg) tlength(0)) /// yline(0,lcolor(red) lpattern(dash)) xlab(,valuelabel angle(40) labsize(med)) xtitle("x axis title", size(vlarge)) legend(off)
Comment