Set the title and create the first band plot. The LEGENDLABEL= option in the BAND statement specifies the label for the band plot in the legend.


proc sgplot data=sashelp.classfit;
  title "Fit and Confidence Band from Precomputed Data";
  band x=height lower=lower upper=upper /
       legendlabel="95% CLI" name="band1";