Hi, I have SAS 9.4 TS Level 1M2. I was wondering if it was possible to use style attribute references within SGPLOT to specify the color of your markers? This is because I like to use the default SAS colors, and in my "real" example, I have several columns, so I will use several scatter statements. I've been using the following code to try and get light red marker symbols, the second color SAS uses in the grouped data, but this doesn't work. I thought it was possible to achieve in SGPLOT in SAS 9.4? I also wanted to avoid using the code of the color, i.e. cx....... proc sgplot data = sashelp.heart; scatter x = height y = weight / markerattrs=(symbol=circlefilled color=GraphData2:contrastcolor); run; proc sgplot data = sashelp.heart; scatter x = height y = weight / markerattrs=(symbol=circlefilled) filledoutlinedmarkers markerfillattrs=(color=GraphData); run; proc sgplot data = sashelp.heart; scatter x = height y = weight / markerattrs=(symbol=circlefilled color=GraphData2); run; The following code, does work in GTL, but I wanted to use SGPLOT for this example. proc template; define statgraph lineplot; begingraph; layout overlay; scatterplot x = height y = weight / markerattrs=(symbol=circlefilled color=GraphData2:contrastcolor); endlayout; endgraph; end; run; proc sgrender data=sashelp.heart template=lineplot; run; Thank you in advance for your help. Kriss
... View more