The code below is about as close as you're going to get. It's something missing in sgplot that prevents you from getting what you want? symbol1 i=join color=lipk; symbol2 i=join color=gray; symbol3 i=none value=circle; axis1 order=0.3 to 1 by 0.1; proc gplot data=funnel; plot U3sd*n=1 L3sd*n=1 U2sd*n=2 L2sd*n=2 Proportion*trials=3 / overlay vref=(&AvgProp) grid legend vaxis=axis1; run;
... View more