Run PROC GAREABAR with VBAR statement.The VBAR site statement creates a vertical bar for each value of site. *SALESPERSONS sets the width variable for bars. SUMVAR=SALES sets the height variable for each of the bars.


proc gareabar data=totals;
   vbar site*salespersons /
      sumvar=sales;
run;
quit;