<?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 Fun With SAS ODS Graphics: 'Heartfelt' Mother's Day Greetings (Text Plots) in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Heartfelt-Mother-s-Day-Greetings-Text/m-p/987647#M25903</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MothersDay2026.png" style="width: 990px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/114888i8B1CBC1F04E35AE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="MothersDay2026.png" alt="MothersDay2026.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A quick transformation of code for a SAS ODS Graphics &lt;A href="https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Working-9-to-17/td-p/892517" target="_self"&gt;24-hour watch face&lt;/A&gt; to yield "heartfelt" Mother's Day greetings (&lt;A href="https://stock.adobe.com/images/happy-mothers-day-gift-card-in-trendy-style-mothers-day-design-in-vector-cute-simple-graphics-in-blue-color/107652283" target="_self"&gt;inspiration&lt;/A&gt;). Happy Mother's Day, all!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Fun With SAS ODS Graphics: Heartfelt Mother's Day Greetings (Text Plots)
  Inspired by neat image at stock.adobe.com/images/happy-mothers-day-gift-card-in-trendy-style-mothers-day-design-in-vector-cute-simple-graphics-in-blue-color/107652283;

data hearts;                                        * Generate 32 points for hearts around a circle of radius=1;                                 
do heart=0 to 32;                                   
  heartUNI=unicode('\u2764');                       * Unicode for heart;
  Yh=cos(heart/32*2*constant('pi'));               
  Xh=sin(heart/32*2*constant('pi'));
  angle=360-heart/32*360;                           * Compute angle to display heart at;                
  output; 
end;
xH=.;
txt1="happy"; Xt1=0; Yt1=.43; output;               * Put happy Mother's Day in center of circle (on separate lines);
txt2="Mother's"; Xt2=0; Yt2=.15; output;      
txt2="Day"; Xt2=0; Yt2=-.15; output;       
                                                    * Generate Happy Mother's Day greetings; 
ods graphics on / reset height=5in width=5in imagefmt=svg;
proc sgplot data=hearts aspect=1 noautolegend nowall noborder subpixel;
styleattrs backcolor=cx6AB2EC;                      * Hex RGB code for light blue background;
text x=Xh y=Yh text=heartUNI / rotate=angle contributeoffsets=none strip textattrs=(size=28pt color=white); * Add hour markers (circles); * Display white hearts in a circle (tilted at angles);                              
text x=Xt1 y=Yt1 text=txt1 / contributeoffsets=none strip textattrs=(size=22pt color=white weight=normal) splitchar='*' splitpolicy=splitalways; * Display 'happy' (samller, lowercase, white);
text x=Xt2 y=Yt2 text=txt2 / contributeoffsets=none strip textattrs=(size=44pt color=white weight=bold) splitchar='*' splitpolicy=splitalways; * Display Mother's Day (larger, uppercase, white, bold;
xaxis display=none offsetmin=.08 offsetmax=.08;     * Suppress axes, provide a little padding;
yaxis display=none offsetmin=.08 offsetmax=.08;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 09 May 2026 21:39:33 GMT</pubDate>
    <dc:creator>tc</dc:creator>
    <dc:date>2026-05-09T21:39:33Z</dc:date>
    <item>
      <title>Fun With SAS ODS Graphics: 'Heartfelt' Mother's Day Greetings (Text Plots)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Heartfelt-Mother-s-Day-Greetings-Text/m-p/987647#M25903</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MothersDay2026.png" style="width: 990px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/114888i8B1CBC1F04E35AE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="MothersDay2026.png" alt="MothersDay2026.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A quick transformation of code for a SAS ODS Graphics &lt;A href="https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Working-9-to-17/td-p/892517" target="_self"&gt;24-hour watch face&lt;/A&gt; to yield "heartfelt" Mother's Day greetings (&lt;A href="https://stock.adobe.com/images/happy-mothers-day-gift-card-in-trendy-style-mothers-day-design-in-vector-cute-simple-graphics-in-blue-color/107652283" target="_self"&gt;inspiration&lt;/A&gt;). Happy Mother's Day, all!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* Fun With SAS ODS Graphics: Heartfelt Mother's Day Greetings (Text Plots)
  Inspired by neat image at stock.adobe.com/images/happy-mothers-day-gift-card-in-trendy-style-mothers-day-design-in-vector-cute-simple-graphics-in-blue-color/107652283;

data hearts;                                        * Generate 32 points for hearts around a circle of radius=1;                                 
do heart=0 to 32;                                   
  heartUNI=unicode('\u2764');                       * Unicode for heart;
  Yh=cos(heart/32*2*constant('pi'));               
  Xh=sin(heart/32*2*constant('pi'));
  angle=360-heart/32*360;                           * Compute angle to display heart at;                
  output; 
end;
xH=.;
txt1="happy"; Xt1=0; Yt1=.43; output;               * Put happy Mother's Day in center of circle (on separate lines);
txt2="Mother's"; Xt2=0; Yt2=.15; output;      
txt2="Day"; Xt2=0; Yt2=-.15; output;       
                                                    * Generate Happy Mother's Day greetings; 
ods graphics on / reset height=5in width=5in imagefmt=svg;
proc sgplot data=hearts aspect=1 noautolegend nowall noborder subpixel;
styleattrs backcolor=cx6AB2EC;                      * Hex RGB code for light blue background;
text x=Xh y=Yh text=heartUNI / rotate=angle contributeoffsets=none strip textattrs=(size=28pt color=white); * Add hour markers (circles); * Display white hearts in a circle (tilted at angles);                              
text x=Xt1 y=Yt1 text=txt1 / contributeoffsets=none strip textattrs=(size=22pt color=white weight=normal) splitchar='*' splitpolicy=splitalways; * Display 'happy' (samller, lowercase, white);
text x=Xt2 y=Yt2 text=txt2 / contributeoffsets=none strip textattrs=(size=44pt color=white weight=bold) splitchar='*' splitpolicy=splitalways; * Display Mother's Day (larger, uppercase, white, bold;
xaxis display=none offsetmin=.08 offsetmax=.08;     * Suppress axes, provide a little padding;
yaxis display=none offsetmin=.08 offsetmax=.08;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2026 21:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Fun-With-SAS-ODS-Graphics-Heartfelt-Mother-s-Day-Greetings-Text/m-p/987647#M25903</guid>
      <dc:creator>tc</dc:creator>
      <dc:date>2026-05-09T21:39:33Z</dc:date>
    </item>
  </channel>
</rss>

