Dear Statalisters

I am very fond of the flexible coefplot and use it to graph all my models these days. However, for publication it would be nice to print the actual estimates in numbers next to the graph e.g. as y-axis labels on an alternative y-axis. I have struggled, but have so far failed.
I want to use coefplot, because it can easily plot adjusted and unandjusted estimates on the same graph. I have posted an example below, which is based on the manual page of coefplot (http://repec.sowi.unibe.ch/stata/coe...g-started.html)

Code:
sysuse auto, clear
regress price mpg trunk length turn if foreign==0
estimates store D
regress price mpg trunk length turn if foreign==1
estimates store F
coefplot (D, offset(0.05)) (F, offset(-0.05)), drop(_cons) xline(0) ///
mlabel(string(@b,"%9.1f")+"("+string(@ll,"%9.1f")+"-"+string(@ul,"%9.1f")+")"+", {it:p} = "+string(@pval,"%9.3f")) ///
mlabposition(3) mlabgap(*0.4) mlabsize(vsmall)
The result is shown below. I tried to add a scatter plot at @at(internal variable for plot position), "some fixed x-value", and then add the mlabels to this. But no 2-way plot seems to accept fixed x-values. Moreover, yaxis labels cannot be filled with the coefplots internal variables, e.g. @b for point estimates. So I am at my wits end. Any suggestions?

Thank you for time!

[ATTACH=CONFIG]temp_22968_1623185770535_481[/ATTACH]