Hi Statalisters,

I would like to overlay two non-twoway type graphs - e.g., graph dot and graph hbar - but it seems that Stata does not support this feature. For example, I would like to produce a graph which overlays the following

Code:
sysuse auto, clear

*first graph to overlay
gr hbar weight, over(foreign) 

*second graph to overlay
gr dot price, over(foreign)

*This line will not work
gr hbar weight, over(foreign) || gr dot price, over(foreign)

Do you have any advice on how I should proceed?

Thank you!