ods html; proc template; define statgraph _boxplot; begingraph; layout overlay / xaxisopts = (display = (ticks tickvalues)) yaxisopts = (griddisplay = on); boxplot y = cholesterol x= deathcause / orient = horizontal; endlayout; endgraph; end; run; proc sgrender data = sashelp.heart template = _boxplot; run;