Generate the plot. NONEEDLE suppresses the line drawn from the x-y plane to the plot point. GRID draws reference lines for x, y, and z axis tick marks.
proc g3d data=reflib.iris2;
   scatter petallen*petalwid=sepallen
         / noneedle
           grid
           color=colorval
           shape=shapeval;