Generate the contour plot. PATTERN fills
the contour levels with solid patterns. COUTLINE= names the color that outlines
the grid cells. CTEXT= names a color for axes and legend text.
proc gcontour data=reflib.swirl;
plot y*x=z / pattern
coutline=gray
ctext=green;
run;