Please post code as text, preferably in a code box opened on the forum with either the </> or "running man" icons.
Your PDF shows an error on attempting to open, so can't say anything about any of the contents.
XAXIS and YAXIS statements control appearance of axis. The option Display=NONE should suppress most of the axis appearance. Example:
proc sgplot data=sashelp.class; scatter x=height y=weight; xaxis display=none; yaxis display=none; run;
You should have access to the sashelp.class data set and can run that code and see the result.
Without an image or code there is no way to reference what a "red" or "swirly line" might be. If you set the ODS STYLE to Journal, or one of the others in that group, the output will be black, white or grayscale.
Thank!
For the color, you should try adding option fillattrs=(color=gray55) to the polygon statement.
And for line thickness, try option lineattrs=(thickness=5)
Play with this:
proc sgplot data=side aspect=1 noborder noautolegend;
polygon x=x y=y id=degree / fill outline
colorresponse=color colormodel=(gray00 gray55 graydd) lineattrs=(thickness=5);
xaxis display=none;
yaxis display=none;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.