proc sgplot data=WORK.CUSTOMERDATA;
title height=14pt "Bar Chart of Gender";
vbar Gender / fillattrs= (color=CX024ae6) datalabel;
yaxis grid;
run;
ods graphics / reset;
title;
如何更改单个条的颜色?我试过 fill= 和 styleattrs datacolors= 但它似乎不起作用..