The VBAR statement produces a vertical bar chart. TYPE= specifies percentage as the chart statistic for the variable Size.
proc chart data=shirts;
   vbar size / type=percent;
   title 'Percentage of Total Sales for Each Shirt Size';
run;