I am using this code: AXIS1 Interval=EVEN;
proc gradar data=SomeData;
chart Cat1
/
overlay=Cat2
sumvar=Measure
des=''
spiderweb
cstars=(blue, red, black, green)
wstars=4 4 4 4
lstars=1 1 1 1
staraxes= (AXIS1, AXIS1, AXIS1, AXIS1)
;
run; It works OK but is it possible to also define the staraxes to have a min of 0 and max of 10 in step sizes of 0.5? Something along those lines: GRID VALUES = (0 TO 10 BY 0.5) This: AXIS1 Interval=EVEN order=(0 to 10); does not product the desired results.
... View more