This code produces a bar graph that I believe correctly represent the essence of my problem.

As you can see from the code and barely see on the graph, I was able to find an appropriate set of options to reduce the size of the labels on the y axis. I've been unable to do the same for the labels on the group axis. If I open this graph in Stata's Graph Editor and click on the group axis, I see that the object is called "grpaxis" and I am able to change the "Label Size" characteristic from "Medium Small" to "Small" to produce what I want. But how do I instruct Stata to do that when it creates the graph?
Code:
sysuse auto, clear graph bar weight, over(foreign) ylabel(,labsize(small))
As you can see from the code and barely see on the graph, I was able to find an appropriate set of options to reduce the size of the labels on the y axis. I've been unable to do the same for the labels on the group axis. If I open this graph in Stata's Graph Editor and click on the group axis, I see that the object is called "grpaxis" and I am able to change the "Label Size" characteristic from "Medium Small" to "Small" to produce what I want. But how do I instruct Stata to do that when it creates the graph?
Comment