HI,
 
how can I add a third variable (Z) in a scatter plot with SAS Enterprise Guide in order to see for each plot not only X (revenues) and Y (price) but also Z (Company Name). 
 
I manage to do it using the following code with SAS 9.1, but I can't figure out how can I do with Enterprise Guide point and click environment.
 
proc gplot data=work.share;
     plot X * Y = Z;
              
run;
quit;
 
 
Thanks for your attention,
 
Paolo