<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Customize colors for specific levels of the variable of interest. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963806#M25413</link>
    <description>&lt;P&gt;Thank you both&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;for providing solutions! I'll read more about the options&amp;nbsp;&lt;SPAN&gt;DATTRMAP and RATTRMAP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Apr 2025 01:36:29 GMT</pubDate>
    <dc:creator>MFraga</dc:creator>
    <dc:date>2025-04-09T01:36:29Z</dc:date>
    <item>
      <title>Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963597#M25407</link>
      <description>&lt;P&gt;In the sgplot below, I am trying to create a graph that draws attention to "North America" and coding it so that when I update the data next year, even if the order by "growth_rate" (which is defined by proc sort) changes (i.e., North America is no longer the region with the worst growth rate in 2025), every time the horizontal bars are created for North America they will have the respective reddish colors chosen in the data step "have3" and all other regions will have the bluish colors chosen in the data step "have3".&lt;BR /&gt;&lt;BR /&gt;Could someone help me understand why SAS is not correctly applying the colors defined for the variable color (and instead is using shades of gray that I have not indicated)?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Also how to make my code works as I intend? In other words, I am trying to create a graph that always draws attention to North America by assigning it a unique colors. Any insight is welcome!&lt;BR /&gt;&lt;BR /&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data have;&lt;BR /&gt;input code region &amp;amp;$20. growth_rate year;&lt;BR /&gt;datalines;&lt;BR /&gt;0 North America -5.92 2020&lt;BR /&gt;0 North America -2.18 2021&lt;BR /&gt;0 North America -7.47 2022&lt;BR /&gt;0 North America -2.17 2023&lt;BR /&gt;0 North America -9.64 2024&lt;BR /&gt;1 South America 0.36 2020&lt;BR /&gt;1 South America 2.69 2021&lt;BR /&gt;1 South America -8.13 2022&lt;BR /&gt;1 South America 1.22 2023&lt;BR /&gt;1 South America -1.34 2024&lt;BR /&gt;2 Asia -1.53 2020&lt;BR /&gt;2 Asia 2.18 2021&lt;BR /&gt;2 Asia 5.64 2022&lt;BR /&gt;2 Asia 6.80 2023&lt;BR /&gt;2 Asia 8.70 2024&lt;BR /&gt;3 Europe -9.68 2020&lt;BR /&gt;3 Europe 3.91 2021&lt;BR /&gt;3 Europe 5.48 2022&lt;BR /&gt;3 Europe 3.52 2023&lt;BR /&gt;3 Europe 3.69 2024&lt;BR /&gt;4 Africa 3.29 2020&lt;BR /&gt;4 Africa 7.97 2021&lt;BR /&gt;4 Africa 2.48 2022&lt;BR /&gt;4 Africa 7.36 2023&lt;BR /&gt;4 Africa 1.31 2024&lt;BR /&gt;5 Oceania 8.00 2020&lt;BR /&gt;5 Oceania -6.05 2021&lt;BR /&gt;5 Oceania 6.91 2022&lt;BR /&gt;5 Oceania -1.09 2023&lt;BR /&gt;5 Oceania -7.46 2024&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sort data=have(where=(year=2024)) out=temp;&lt;BR /&gt;by descending growth_rate ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data fmt;&lt;BR /&gt;set temp(rename=(region=start));&lt;BR /&gt;retain fmtname 'fmt' type 'c';&lt;BR /&gt;length label $ 80;&lt;BR /&gt;label=repeat(' ',_n_)||strip(start);&lt;BR /&gt;keep fmtname type start label;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc format cntlin=fmt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data have2;&lt;BR /&gt;set have;&lt;BR /&gt;_region=put(region,$fmt32.);&lt;BR /&gt;if region="North America" then call symput('NorthAmerica',_region);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data have3;&lt;BR /&gt;set have2;&lt;BR /&gt;if _region="North America" then do;&lt;BR /&gt;if year=2020 then color="#f7ebde";&lt;BR /&gt;else if year=2021 then color="#efdbc6";&lt;BR /&gt;else if year=2022 then color="#e1ca9e";&lt;BR /&gt;else if year=2023 then color="#d6ae6b";&lt;BR /&gt;else if year=2024 then color="#b4771f";&lt;BR /&gt;end;&lt;BR /&gt;if _region NE "North America" then do;&lt;BR /&gt;if year=2020 then color="#deebf7";&lt;BR /&gt;else if year=2021 then color="#c6dbef";&lt;BR /&gt;else if year=2022 then color="#9ecae1";&lt;BR /&gt;else if year=2023 then color="#6baed6";&lt;BR /&gt;else if year=2024 then color="#1f77b4";&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%sganno&lt;BR /&gt;data sganno;&lt;BR /&gt;%SGTEXT(LABEL="North America",TEXTWEIGHT="BOLD",TEXTCOLOR="RED",TEXTSIZE=10, FILLCOLOR="white",FILLTRANSPARENCY=0,WIDTH=40,Y1SPACE="DATAVALUE",X1SPACE="LAYOUTPERCENT",YC1="&amp;amp;NorthAmerica.",X1=6 )&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=have3 sganno=sganno;&lt;BR /&gt;title "Growth rate";&lt;BR /&gt;styleattrs datacolors=(color);&lt;BR /&gt;hbar _region / response=growth_rate group=year&lt;BR /&gt;groupdisplay=cluster&lt;BR /&gt;clusterwidth=0.9&lt;BR /&gt;datalabel DATALABELFITPOLICY=NONE&lt;BR /&gt;datalabelattrs=(size=8pt)&lt;BR /&gt;barwidth=1 nooutline&lt;BR /&gt;transparency=0 dataskin=none;&lt;/P&gt;&lt;P&gt;xaxis display=(nolabel) min=-12 max=12;&lt;BR /&gt;yaxis display=(nolabel) colorbands=even ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 14:45:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963597#M25407</guid>
      <dc:creator>MFraga</dc:creator>
      <dc:date>2025-04-07T14:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963602#M25408</link>
      <description>&lt;P&gt;Please follow these instructions and example&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatug/p0wv2bbjftizkpn1puokmcblrw15.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatug/p0wv2bbjftizkpn1puokmcblrw15.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 15:35:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963602#M25408</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2025-04-07T15:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963605#M25409</link>
      <description>&lt;P&gt;I think the easiest way for this case here is to use a range attributes map. The key is mapping the region/year combinations into a single numeric value that you can use in the attributes map.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input code region $ 3-16 growth_rate year;
datalines;
0 North America -5.92 2020
0 North America -2.18 2021
0 North America -7.47 2022
0 North America -2.17 2023
0 North America -9.64 2024
1 South America 0.36 2020
1 South America 2.69 2021
1 South America -8.13 2022
1 South America 1.22 2023
1 South America -1.34 2024
2 Asia          -1.53 2020
2 Asia          2.18 2021
2 Asia          5.64 2022
2 Asia          6.80 2023
2 Asia          8.70 2024
3 Europe        -9.68 2020
3 Europe        3.91 2021
3 Europe        5.48 2022
3 Europe        3.52 2023
3 Europe        3.69 2024
4 Africa        3.29 2020
4 Africa        7.97 2021
4 Africa        2.48 2022
4 Africa        7.36 2023
4 Africa        1.31 2024
5 Oceania       8.00 2020
5 Oceania       -6.05 2021
5 Oceania       6.91 2022
5 Oceania       -1.09 2023
5 Oceania       -7.46 2024
;
run;

proc sort data=have(where=(year=2024)) out=temp;
by descending growth_rate ;
run;

data fmt;
set temp(rename=(region=start));
retain fmtname 'fmt' type 'c';
length label $ 80;
label=repeat(' ',_n_)||strip(start);
keep fmtname type start label;
run;

proc format cntlin=fmt;
run;

data have2;
set have;
_region=put(region,$fmt32.);
if region="North America" then call symput('NorthAmerica',_region);
run;

data have3;
set have2;
if region="North America" then do;
if year=2020 then color=1;
else if year=2021 then color=2;
else if year=2022 then color=3;
else if year=2023 then color=4;
else if year=2024 then color=5;
end;
if region NE "North America" then do;
if year=2020 then color=6;
else if year=2021 then color=7;
else if year=2022 then color=8;
else if year=2023 then color=9;
else if year=2024 then color=10;
end;
run;

data attrmap;
retain ID "barcolors" altcolor "black";
input min $ max $ color $;
datalines;
1  1  cxf7ebde
2  2  cxefdbc6
3  3  cxe1ca9e
4  4  cxd6ae6b
5  5  cxb4771f
6  6  cxdeebf7
7  7  cxc6dbef
8  8  cx9ecae1
9  9  cx6baed6
10 10 cx1f77b4
;
run;

data sganno;
%sganno
%SGTEXT(LABEL="North America",TEXTWEIGHT="BOLD",TEXTCOLOR="RED",TEXTSIZE=10, FILLCOLOR="white",FILLTRANSPARENCY=0,WIDTH=40,Y1SPACE="DATAVALUE",X1SPACE="LAYOUTPERCENT",YC1="&amp;amp;NorthAmerica.",X1=6 )
run;

proc sgplot data=have3 sganno=sganno rattrmap=attrmap noautolegend;
title "Growth rate";
hbar _region / response=growth_rate group=year colorresponse=color rattrid=barcolors
groupdisplay=cluster
clusterwidth=0.9
datalabel DATALABELFITPOLICY=NONE
datalabelattrs=(size=8pt)
barwidth=1 nooutline
transparency=0 dataskin=none;
xaxis display=(nolabel) min=-12 max=12;
yaxis display=(nolabel) colorbands=even ;
run;&lt;/CODE&gt;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 01:33:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963605#M25409</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2025-04-09T01:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963606#M25410</link>
      <description>&lt;P&gt;Oh, I forgot to add the NOAUTOLEGEND option to the SGPLOT statement. You'll want that to get rid of the gradient legend on the right.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 16:20:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963606#M25410</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2025-04-07T16:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963607#M25411</link>
      <description>&lt;P&gt;Nevermind, I was able to edit the post &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 16:22:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963607#M25411</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2025-04-07T16:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963651#M25412</link>
      <description>&lt;P&gt;1)&lt;/P&gt;
&lt;P&gt;Same as Danh_sas 's code, other than him ,I used DATTRMAP= option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;

data have;
input code region &amp;amp;$20. growth_rate year;
datalines;
0 North America  -5.92 2020
0 North America  -2.18 2021
0 North America  -7.47 2022
0 North America  -2.17 2023
0 North America  -9.64 2024
1 South America  0.36 2020
1 South America  2.69 2021
1 South America  -8.13 2022
1 South America  1.22 2023
1 South America  -1.34 2024
2 Asia  -1.53 2020
2 Asia  2.18 2021
2 Asia  5.64 2022
2 Asia  6.80 2023
2 Asia  8.70 2024
3 Europe  -9.68 2020
3 Europe  3.91 2021
3 Europe  5.48 2022
3 Europe  3.52 2023
3 Europe  3.69 2024
4 Africa  3.29 2020
4 Africa  7.97 2021
4 Africa  2.48 2022
4 Africa  7.36 2023
4 Africa  1.31 2024
5 Oceania  8.00 2020
5 Oceania  -6.05 2021
5 Oceania  6.91 2022
5 Oceania  -1.09 2023
5 Oceania  -7.46 2024
;
run;

 

proc sort data=have(where=(year=2024)) out=temp;
by descending growth_rate ;
run;

 

data fmt;
set temp(rename=(region=start));
retain fmtname 'fmt' type 'c';
length label $ 80;
label=repeat(' ',_n_)||strip(start);
keep fmtname type start label;
run;

 

proc format cntlin=fmt;
run;

 

data have2;
set have;
_region=put(region,$fmt32.);
if region="North America" then call symput('NorthAmerica',_region);
run;

 

data have3;
set have2;
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;if strip(_region)="North America" then year=10*year ;&lt;/STRONG&gt;&lt;/FONT&gt;
run;
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;
data dattramp;
input id $ value fillcolor $;
cards;
x 20200 #f7ebde
x 20210 #efdbc6
x 20220 #e1ca9e
x 20230 #d6ae6b
x 20240 #b4771f
x 2020 #deebf7
x 2021 #c6dbef
x 2022 #9ecae1
x 2023 #6baed6
x 2024 #1f77b4
;&lt;/STRONG&gt;&lt;/FONT&gt;



%sganno
data sganno;
%SGTEXT(LABEL="North America",TEXTWEIGHT="BOLD",TEXTCOLOR="RED",TEXTSIZE=10, FILLCOLOR="white",FILLTRANSPARENCY=0,WIDTH=40,Y1SPACE="DATAVALUE",X1SPACE="LAYOUTPERCENT",YC1="&amp;amp;NorthAmerica.",X1=6 )
run;

 

proc sgplot data=have3 sganno=sganno &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;dattrmap=dattramp&lt;/STRONG&gt; &lt;STRONG&gt;noautolegend&lt;/STRONG&gt;&lt;/FONT&gt;;
title "Growth rate";
*styleattrs datacolors=(color);
hbar _region / response=growth_rate group=year &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;attrid=x&lt;/STRONG&gt;&lt;/FONT&gt;
groupdisplay=cluster
clusterwidth=0.9
datalabel DATALABELFITPOLICY=NONE
datalabelattrs=(size=8pt)
barwidth=1 nooutline
transparency=0 dataskin=none;

xaxis display=(nolabel) min=-12 max=12;
yaxis display=(nolabel) colorbands=even &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;colorbandsattrs=(transparency=0.8 color=grey)&lt;/STRONG&gt;&lt;/FONT&gt; ;
run;

 &lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1744079251544.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105990iF20396D88A71BF29/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1744079251544.png" alt="Ksharp_0-1744079251544.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2）And if your dataset has been sorted as you did, you can code it as simple as this:&lt;/P&gt;
&lt;PRE&gt; 

data have;
input code region &amp;amp;$20. growth_rate year;
datalines;
0 North America  -5.92 2020
0 North America  -2.18 2021
0 North America  -7.47 2022
0 North America  -2.17 2023
0 North America  -9.64 2024
1 South America  0.36 2020
1 South America  2.69 2021
1 South America  -8.13 2022
1 South America  1.22 2023
1 South America  -1.34 2024
2 Asia  -1.53 2020
2 Asia  2.18 2021
2 Asia  5.64 2022
2 Asia  6.80 2023
2 Asia  8.70 2024
3 Europe  -9.68 2020
3 Europe  3.91 2021
3 Europe  5.48 2022
3 Europe  3.52 2023
3 Europe  3.69 2024
4 Africa  3.29 2020
4 Africa  7.97 2021
4 Africa  2.48 2022
4 Africa  7.36 2023
4 Africa  1.31 2024
5 Oceania  8.00 2020
5 Oceania  -6.05 2021
5 Oceania  6.91 2022
5 Oceania  -1.09 2023
5 Oceania  -7.46 2024
;
run;

 

proc sort data=have(where=(year=2024)) out=temp;
by descending growth_rate ;
run;

 

data fmt;
set temp(rename=(region=start));
retain fmtname 'fmt' type 'c';
length label $ 80;
label=repeat(' ',_n_)||strip(start);
keep fmtname type start label;
run;

 

proc format cntlin=fmt;
run;

 

data have2;
set have;
_region=put(region,$fmt32.);
if region="North America" then call symput('NorthAmerica',_region);
run;

 

data have3;
set have2;
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;if strip(_region)="North America" then year=10*year ;&lt;/STRONG&gt;&lt;/FONT&gt;
run;

%sganno
data sganno;
%SGTEXT(LABEL="North America",TEXTWEIGHT="BOLD",TEXTCOLOR="RED",TEXTSIZE=10, FILLCOLOR="white",FILLTRANSPARENCY=0,WIDTH=40,Y1SPACE="DATAVALUE",X1SPACE="LAYOUTPERCENT",YC1="&amp;amp;NorthAmerica.",X1=6 )
run;

 

proc sgplot data=have3 sganno=sganno  &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;noautolegend&lt;/STRONG&gt;&lt;/FONT&gt;;
title "Growth rate";
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;styleattrs datacolors=(
 cxf7ebde cxefdbc6 cxe1ca9e cxd6ae6b cxb4771f  cxdeebf7  cxc6dbef  cx9ecae1  cx6baed6  cx1f77b4
);&lt;/STRONG&gt;&lt;/FONT&gt;
hbar _region / response=growth_rate group=year 
groupdisplay=cluster
clusterwidth=0.9
datalabel DATALABELFITPOLICY=NONE
datalabelattrs=(size=8pt)
barwidth=1 nooutline
transparency=0 dataskin=none;

xaxis display=(nolabel) min=-12 max=12;
yaxis display=(nolabel) colorbands=even colorbandsattrs=(transparency=0.8 color=grey) ;
run;

 &lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_1-1744079552136.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/105991i5F232BE8E543B5F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_1-1744079552136.png" alt="Ksharp_1-1744079552136.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 02:36:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963651#M25412</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-04-08T02:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Customize colors for specific levels of the variable of interest.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963806#M25413</link>
      <description>&lt;P&gt;Thank you both&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;for providing solutions! I'll read more about the options&amp;nbsp;&lt;SPAN&gt;DATTRMAP and RATTRMAP.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2025 01:36:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Customize-colors-for-specific-levels-of-the-variable-of-interest/m-p/963806#M25413</guid>
      <dc:creator>MFraga</dc:creator>
      <dc:date>2025-04-09T01:36:29Z</dc:date>
    </item>
  </channel>
</rss>

