The attached image shows the output from two sgplot statements. The syntax for the bottom (incorrect) image is below. The syntax for the (correct) top image is identical, except that the "max=18" text is omitted. (See, for example the point for 2010, it should be 13.1). Using the max statement seems to shift the axis down.
%let cl = curvelabel CURVELABELLOC=OUTSIDE CURVELABELPOS=max curvelabelattrs=(size=12); proc sgplot data=medians_rates_comb;
label date="Year (Jan)";
series y=ABS_P50_AHY_C8_RcZS x=date
/lineattrs=(thickness=4 pattern=solid)
markers markerattrs=(size=8 symbol=circlefilled) &cl;
yaxis label="%" labelpos=center minor grid minorgrid
labelattrs=(size=14) valueattrs=(size=12) valuesformat=f3.1 min=5 max=18;
xaxis grid minor minorgrid labelattrs=(size=12) valueattrs=(size=12) ;
run;
... View more