Helou, I'm trying to make radar graph with proc gradar. I need to change axis range and legend. Unfortunately, I if I use axis statement, it doesn't affect to major ticks. There is following example in SAS support pages for this modifying, but it does work only partially: proc format library=library; value mnth 1="Jan/Feb" 2="Mar/Apr" 3="May/Jun" 4="Jul/Aug" 5="Sep/Oct" 6="Nov/Dec"; run; data goals; input month Division $ value @@; format month mnth.; format value percentn7.0; datalines; 1 Parts .43 1 Tools .82 2 Parts .86 2 Tools .32 3 Parts .70 3 Tools .65 4 Parts .35 4 Tools .52 5 Parts .84 5 Tools .62 6 Parts .55 6 Tools .43 ; run; goptions reset=all border hsize=5.15in vsize=4.2in; axis1 order=(0 to .4 by .4, .6 to 1 by .2) value=(height=3pct c=blue tick=1 ""); axis2 order=(0 to .4 by .4, .6 to 1 by .2) value=none; proc gradar data=goals; chart month / sumvar=value staraxis=(axis1 axis2 axis2 axis2 axis2 axis2) noframe height=3.25 starinradius=0 overlayvar=division; run; quit; Labels are blue in axis1, but I got only labels 0.32, 0.59 and 0.86. In legend there is problem too, because line and tex are limited. I'm using SAS enterprice guide 4.3.0 and sas 9.21.
... View more