In the program
I would like a header ("Origin:") directly over the horizontal bar labels ("Domestic" and "Foreign") in hbar.
(for conformity with other graphs in a series of graphs I prefer this way of explaining the meaning of the category labels to other ways, e.g. by titling the whole graph by "Mean price by origin".
In my problem the header is sth like "Creation or maintainance of..." and the labels are "Lakes or ponds", "walls or terraces of natural stone", "other ecologically valuable landscape elements")
I would be grateful for a hint how to achieve this.
Stephan
PHP Code:
sysuse auto
collapse price, by(foreign)
graph hbar price, over(foreign)
(for conformity with other graphs in a series of graphs I prefer this way of explaining the meaning of the category labels to other ways, e.g. by titling the whole graph by "Mean price by origin".
In my problem the header is sth like "Creation or maintainance of..." and the labels are "Lakes or ponds", "walls or terraces of natural stone", "other ecologically valuable landscape elements")
I would be grateful for a hint how to achieve this.
Stephan
Comment