I have the following stacked bar chart made with sgplot and vbar. I need to add a line to the plot and have tried to do this by using vline plot but this results in no stacking and another color. What am I doing wrong? proc sgplot Data=work.hent dattrmap=attrmap; format md $md_saf. Col3 PERCENT17. Col1 PERCENT17. Col2 PERCENT17.; vbar md / response=Col3 group=group attrid=A barwidth=0.55; keylegend/; vline md / response=col2 break; yaxis values=(0.0 to 0.30 by 0.05) GRID display= (NOLABEL); xaxis label=" ";
... View more