Generate the contour plot. The AUTOLABEL= option labels the contour lines; (CHECK=NONE) suppresses contour label collision checking, and might lessen the time needed to compute the plot. HAXIS=AXIS1 assigns the AXIS1 definition to the horizontal axis. LEGEND=LEGEND1 assigns the LEGEND1 definition to the LEGEND. The NAME= option specifies the name of the catalog entry for the graph.
proc gcontour data=sashelp.lake;
plot length*width=depth/
autolabel=(check=none)
haxis=axis1
legend=legend1
name="GCTLABEL";
run;
quit;