Hello, I have a problem with my legend - I cannot fit it into my graph, it always get clipped no matter what height/width/legendarea I use (it is important for me to keep this height and width as in the code). I'm using SAS 9.4 This is my code: ods graphics / width=600 height=300 maxlegendarea=45 attrpriority=none;
proc sgplot DATA=vintagr noborder;
series x=seniority y=vintage3 /group=fin_period lineattrs=(pattern=solid) markers;
xaxis display=(nolabel) integer values=(2 to 36);
yaxis display=(nolabel noline) grid gridattrs=(thickness=2) integer values=(0 to 0.09 by 0.01);
keylegend / title='' across=9 noborder down=4;
run; and my data is attached to file. If I try to use discretelegend statement with displayclipped=TRUE, to at least partially see the legend, I always get an error, as my SAS does not recognize displayclipped as an option of discretelegend. Best regards
... View more