I am trying to figure out the best way to annotate or move my labels so they do not run into each other or county lines. The label variable I am using is xtext which I created in MTMAP. I have tried if and then statements to move x or y but I was unsuccessful. It would also be nice to get some advice on how to splitting some of the longer labels. Thanks! data MTMap; length xtext $20.; merge MTcontycnt MTCounties; if county=113 then delete; by county; xtext = cats(name)||' ('||cats(cnt)||')'; end; run; %annomac; %maplabel(MTCounties, MTMap, MTAnnotate, xtext, county, font='Arial', color=black, size=1.3) legend1 noframe label=(h=2 f=arial ' '); title h=2 f=arial ' '; proc gmap data=MTMap map=MTMap density=2; id county; choro cnt / anno=mtannotate legend=legend1 Xsize=8in ysize=5in stretch; run; quit;
... View more