I would like to maintain the order of my data according to the variable q1 ("Strongly Agree" "Agree" "Disagree" "Strongly Disagree") in the following code:
proc gchart data=bar6;
hbar role / discrete
type=sum sumvar=perq
subgroup=q1
"role" is either "manager" or "employee".
I would like the subgroup bars on my gchart (ie q1) to be in the order given above (along with the legend having that order).
Also, I would like to maintain the colors used in my legend (eg "Strongly Agree" is always red, "Agree" is always orange, etc).
I created a varible q where "Strongly Agree"=1, "Agree"=2, etc and sorted accordingly.
Is there an option for order=data?