BookmarkSubscribeRSS Feed
admendez03
Fluorite | Level 6

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;

 

Screen Shot 2020-11-20 at 19.25.49.png

2 REPLIES 2
Ksharp
Super User

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;

x.png

GraphGuy
Meteorite | Level 14

Here's an example where I use an attribute map to control colors in sgpanel:

 

https://blogs.sas.com/content/graphicallyspeaking/2019/04/15/does-low-unemployment-mean-there-are-jo...

 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1446 views
  • 2 likes
  • 3 in conversation