Hi there,
Suppose we're working with these data,
So we can get this graph,

Is there any way to change the color of each bar? I'd like to make them green, gren*0.5, yellow, red*0.5, and red, in order to get something like a gradient for this Likert scale.
Thank you in advance,
Suppose we're working with these data,
Code:
use http://www.stata-press.com/data/r13/gsem_cfa, clear reshape long att, i(id) j(atribute)
Code:
graph bar , over(att, lab(labsize(vsmall)))
Is there any way to change the color of each bar? I'd like to make them green, gren*0.5, yellow, red*0.5, and red, in order to get something like a gradient for this Likert scale.
Thank you in advance,
Comment