Dear,
I make a graphic like this,
http://adolphus.pixnet.net/album/photo/104578388#pictop
but this is not what I want, I want to change the item order.
I want the item order like this:
JPXF--60, JPXF--30, JPXF-0, JPXF-30, JPXF-60..................
I try many method, but I can overcome this problem.
Can someone help me solve this problem? Thanks.
Adolphus
PS:Here is my core:
dm'clear log';dm'clear output';
data tmp1;
set sprint.sprintraw1;
goptions goutmode=replace cback=white
cpattern=white
csymbol=none
reset=global border
ftext=swiss
ftitle=swissb htitle=5 htext=1;
axis2 order=(60 to 120 by 5);
proc gchart data=tmp1;
hbar index2 / type=mean
sumvar=obs
errorbar=both
raxis=axis2
coutline=black
noframe
;
run;