Hi,
A coworker of mine is trying to shift gmap output to the left so he can position a legend on the right. He's using annotate for the legend and would like to be able to have the map take 60-65% of the space to the left, leaving room for the vertical legend. Right now the sample code looks like:
goptions gunit=pt htitle=14 htext=8 ftitle="arial" ftext="arial/bold" cback='white';
legend1 across=1 origin=(80 pct, 30 pct) mode=share label=none value=("Less than 10%" "Between 10% and 25%" "25% or More") shape=bar(20pt,10pt);
data annolabel;
length function $ 8;
retain flag 0 xsys ysys '3' hsys '3' when 'a' function 'label' position '6';
format text $52.;
text="Low Diabetes Prevalence";
size=2.3; x=80; y=42;
output;
text="% of County's Members in Plan";
size=2; x=85; y=40;
output;
run;
pattern1 color=CXfffacd; pattern2 color=CXfff59b; pattern3 color=CXFFE705;
proc gmap data=county_map_mcp3 map=county_map_mcp3 anno=annolabel gout=map1;
title "Prevalence of Members with Diabetes: &PLAN";
id county;
where MCP_Name="Buckeye";
choro bin1 / discrete legend=legend1;
run;
These will likely be going to RTF output.
Any suggestions?
Thanks!
--Ben
... View more