How do you get SAS unicode for markers to work? I am unable to get 'trianglefilled' using "(*ESC*){unicode '25b2'x}" on SAS9.4 data have;
set sashelp.stocks;
if year(date) in (2004:2006);
if stock='IBM' and month(date) in (1 4 6 10) then flag="(*ESC*){unicode '25b2'x}";
if stock='Intel' and month(date) in (2 8) then flag="(*ESC*){unicode '25b2'x}";
if stock='Microsoft' and month(date) in (5 9) then flag="(*ESC*){unicode '25b2'x}";
if stock='IBM' then do;group=1;class='AAAAA';end;
else do;group=2;class='BBBBB';end;
run;
*ods graphics /attrpriority=none;
proc sgplot data=have;
series x=date y=close/group=stock markers
grouplc=group groupmc=group lineattrs=(pattern=solid);
xaxistable flag/class=class x=date colorgroup=group;
keylegend /location=inside position=e across=1;
run;
... View more