Follow up question number two! When I publish it as pdf/png or just copy it into powerpoint and enlarge it a new problem arises. The figure in the right top corner remains fine, but the three others seems to have a dotted line around them, I haven't changed anything in the code. data myattrmap; input ID $ value linecolor $ fillcolor $; datalines; myid 1 CXCD5C5C CXCD5C5C myid 2 cx880000 cx880000 myid 3 CXCD5C5C CXCD5C5C myid 4 cx880000 cx880000 ; proc sgpanel data=plot dattrmap=myattrmap noautolegend; where rg in (0,1); panelby rg prepost_kat / layout=lattice onepanel novarname noborder colheaderpos=bottom; band y=tils upper=density lower=mirror / group=group fill outline attrid=myid; format rg rgx. prepost_kat katx.; colaxis display=none; rowaxis label='TILs %' grid; run; I tried changing the linecolor to black and it very well illustrates the problem data myattrmap; input ID $ value linecolor $ fillcolor $; datalines; myid 1 black CXCD5C5C myid 2 black cx880000 myid 3 CXCD5C5C CXCD5C5C myid 4 cx880000 cx880000 ; So I want the linecolor to be solid. Thank you in advance
... View more