Hello Phill,
If you are asking how to generate a shaded area, you could use the BAND statement in PROC SGPLOT which is part of ODS graphics.
Here is an example:
ods graphics on;
data toplot;
set sashelp.air;
L95 = air - 0.30*air;
U95 = air + 0.30*air;
run;
proc sgplot data=toplot;
band x=date lower=L95 upper=U95 / fillattrs=GraphConfidence legendlabel="Confidence" name="band";
series x=date y=air / legendlabel="Summary Curve" name="series";
keylegend "series" "band"/ location=outside position=bottom;
run;
Note that the order of the BAND and the SERIES statements is important. If reverted, the line produced by the series is not seen.
HTH
Daniel