I made a series plot by group. In the results window, all of the lines are solid, but in the .png output, two lines are dashed. I can't figure out what part of the code is doing that.
ods listing gpath='&path';
ods graphics on / reset=all noborder imagename="plot" imagefmt=png;
title1 c=gray33 h=14pt "Title";
proc sgplot data=month_total aspect=1;
series x=month y=total / smoothconnect group=gr name="a"
markers markerattrs=(symbol=squarefilled size=3pt);
where date_ < 22554;
xaxis values=(1 to 12) valuesdisplay=('Jan' 'Feb' 'Mar' 'Apr' 'May' 'Jun' 'Jul' 'Aug' 'Sep' 'Oct' 'Nov' 'Dec' '')
valueattrs=(color=gray33 size=10pt)
label="payment month";
yaxis label="total" valueattrs=(color=gray33 size=10pt);
keylegend "a" / noborder position=right;
run;
... View more