Here is an example of 3-D plot in SAS.
goptions reset=all border;
data t1;
do x=-5 to 5 by 0.1;
do y=-5 to 5 by 0.1;
z=x**2+y**2;
output;
end;
end;
run;
proc g3d data=t1;
plot x*y=z /;
run;
quit;
proc g3d data=t1;
plot x*y=z /
ctop=green
grid
rotate=45
zmax=5
zmin=-5;
run;
quit;
proc g3d data=t1;
plot x*y=z /
ctop=green
grid
rotate=45
zmax=5
zmin=-5
side
tilt=30;
run;
quit;