Hello!
I'm wondering if there is any way to adjust individual bar percentage labels. For example, if I run the following code, how might I make the percentage for domestic white but the percentage for foreign black?
I tried the same strategy one would use for adjusting individual bar colors, e.g.:
But this didn't work, nor did a few other ideas. Any tips would be appreciated!
I'm wondering if there is any way to adjust individual bar percentage labels. For example, if I run the following code, how might I make the percentage for domestic white but the percentage for foreign black?
Code:
sysuse auto graph bar, over(foreign) /// asyvars /// blabel(bar, pos(inside) format(%3.0f) size(medium) color(white))
Code:
graph bar, over(foreign) /// asyvars /// blabel(1, pos(inside) format(%3.0f) size(medium) color(white)) blabel(2, pos(inside) format(%3.0f) size(medium) color(black))
Comment