Dear All,
I'm producing a bar graph with data labels using the following code:
The data labels (blabel) are too large and some are overlapped, I'm wondering how can I change blabels to smaller size?
Any help is appreciated!
(So sorry that I can't share the data, I'm not allowed to do so due to the data using restrictions...)
Many thanks,
Craig
I'm producing a bar graph with data labels using the following code:
Code:
graph bar VAR1 if type=="A" | type=="B", ///
by(type) over(year, label(labsize(vsmall))) ///
blabel(bar,position(outside)) ///
ylabel(, labsize(vsmall)) ///
graphregion(color(white))
Any help is appreciated!
(So sorry that I can't share the data, I'm not allowed to do so due to the data using restrictions...)
Many thanks,
Craig

Comment