Thank you very much for the help! 1. Show is defaulted to "attrmap" in the retain statement. if i default it to "data" or blank, the 4 dissappears from the legend but the group 5 still has the graphdata4 fillpattern. data attr;
retain ID 'a' Show 'AttrMap' ;
input value;
LineStyle = cats('GraphData', value);
MarkerStyle = linestyle;
FillStyle = linestyle;
TextStyleElement = linestyle;
datalines;
1
2
3
4
5
run; 2. Good point on the second (y) data step! Thanks again!
... View more