I am having trouble with changing the colors of certain bars by variable in SGPANEL. I want the response variable "Yes" to be one color and "No" to be another color. I am using SAS University. I want the colors limegreen and darkcyan. Here is my code and a screenshot:
title2 h=12pt'Percent of Americans Aged 20 and Older Who Adhered to Cholesterol Screening Guidelines by Insurance
and Routine Care Provider, 2011-2012';
proc sgpanel data=nh.crossfinal;
styleattrs datacolors=(limegreen darkcyan);
panelby cho5years care;
rowaxis label="Percent" grid max=100.0;
vbar ins / response=percent
filltype=solid
dataskin=gloss name='ins'
fill datalabel
fillattrs=(color=limegreen);
label ins='Insurance'
care='Routine Care'
cho5years='Cholesterol Screening';
format ins decision. care decision.;
run;
title2;
DON'T USE
fillattrs=(color=limegreen)
ods graphics/ attrpriority=color;
proc sgpanel data=sashelp.heart;
styleattrs datacolors=(green red) datacontrastcolors=(green red);
panelby status sex;
rowaxis label="Percent" grid max=100.0;
vbar bp_status / group=sex groupdisplay=cluster
filltype=solid
dataskin=gloss name='ins'
fill datalabel;
run;
Here's an example where I use an attribute map to control colors in sgpanel:
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.