Dear all,
I'm trying to combine several graphs in a single column, and noticed that the alignment is not optimal due to the space taken by the Y axis labels. Consider the following example:
As you can see, the graphs are misaligned because the second has longer labels; the xcommon options doesn't correct it. Could you advice on how to proper align?
Not sure it matters but I have the following options in the "myprofile.do" file:
grstyle init
grstyle set graphsize 5cm 5cm
grstyle set margin "1 1 1 1", pt: graph
I'm trying to combine several graphs in a single column, and noticed that the alignment is not optimal due to the space taken by the Y axis labels. Consider the following example:
Code:
sysuse auto, clear scatter len wei, name(one, replace) gen len2 = len*10000 scatter len2 wei, name(two, replace) graph combine one two, col(1)
Not sure it matters but I have the following options in the "myprofile.do" file:
grstyle init
grstyle set graphsize 5cm 5cm
grstyle set margin "1 1 1 1", pt: graph

Comment