Generate the surface plot. The SIDE option draws a side wall for the graph. The TILT= option specifies a tilt angle of 15° for the plot. The initial rotation of 70° is not affected by the TILT= option.


proc g3d data=sashelp.lake;
   plot length*width=depth/
      side
      tilt=30;
run;
quit;