Hi I have this sgplot
1. how can I color the bars in the color steel
2. why does my refline not show 🙂
proc sgplot data = plot;
vbarparm category = x response = y / datalabel datalabelattrs = (size = 10)barwidth=.9;
yaxis min = 0 max = 1;
format x date9. y percent.;
xaxis display = (nolabel);
yaxis display = (nolabel) MAX=1;
refline 80/lineattrs=(thickness=1 color=black) label=("text");
Title1 font = 'Calibri' height=16pt "text";
run;