Hello, I'm currently trying to find a way to customize colors in a stacked bar chart. The colors are currently blue/red. Here is an example of my code: proc sort data=t.indic_f; by A; run; proc freq data=t.indic_f noprint; table RETARD_PAT/out=test3; by A; run; proc sgplot data=test3; vbar A / response=Percent group=RETARD_PAT groupdisplay=stack; xaxis discreteorder=data; yaxis grid values=(0 to 100 by 10) label="Percentage of Total with Group"; format RETARD_PAT retards.; run; I've done a lot of research to no avail... Thanks!lot
... View more