From: dc353 on
Hi,

I'm generating a histogram with the following code and need help in
controlling the vertical axis. Would like to graph from 0 to 1
percent.

title 'ge (SAS)';
legend2 FRAME CFRAME=ligr CBORDER=black POSITION=center;
proc capability data=hold.sas_ge noprint;

histogram LOG_RET / cframe = ligr

midpoints = -.3 to .3 by .0005

normal(color=yellow)
cfill = blue
legend = legend2;
run;