The code below produces 2 bars (one inside the other) and one line. The bars are produced by using the symbol i=needle. This is an alternate to annotate.
symbol1 c=black i=needle v=none w=125 L=1;
symbol2 c=blue i=needle v=none w=75 L=1;
symbol3 c=red i=join v=square w=25 L=2;
axis1 order=(%ord) offset=(5,5) pct
label=('Campaign Start Week');
axis2 order=(0 to 12000 by 3000) offset=(0,0) pct
label=(a=90 'Tons');
axis3 c=red order=(40 to 100 by 20) offset=(0,0) pct
label=(a=90 'Percent on Order');
;
proc gplot data=all;
format weekstrt date7.;
plot (wip inspectd)*weekstrt /overlay
haxis=axis1
vaxis=axis2
;
plot2 onordfin*weekstrt/vref=87.6
vaxis=axis3;
run;
... View more