My program:
 
proc logistic data = data plots = all  covout;
 model DV(ref = first) = IV /link = glogit;
run;
The DV has 5 levels.
 
One plot is a graph of the predicted probablities of each level of the DV at all levels of the IV.  The y axis is 0 to 1 (for probablity) but I'd like to limit it to 0 to 0.5 as none of the probabilities ever exceed 0.5.  But I don't want to use the graphics editor as the whole thing is wrapped in an ODS RTF statement for output to Word.
 
Using SAS 9.4 on Windows 10.
 
TIA