<?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: Line break for annotated footnote in proc sqplot in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598180#M172471</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294461"&gt;@KRA15&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data anno_footnote;
length function $10 anchor $20 drawspace $20 label $60;
anchor='bottomleft';
function='text';
drawspace='GraphPercent';
textcolor='gray77'; textsize=8;
width=100;
x1=1; y1=4;
label="NOTE: First line of annotated footnote.";
output;
x1=1; y1=0;
label="SOURCES: Second line of annotated footnote.";
output;
run;

proc sgplot data=sashelp.class noautolegend uniform=all sganno=anno_footnote pad=(bottom=10 pct);
bubble x=age y=height size=Weight / group=Sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 21 Oct 2019 17:22:39 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2019-10-21T17:22:39Z</dc:date>
    <item>
      <title>Line break for annotated footnote in proc sqplot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598172#M172466</link>
      <description>&lt;P&gt;I want to annotate a footnote on the graph using sgplot, with a line break between the first and the second lines of the annotated footnote, so that the results look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="annotated_footnote.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33328i038D52714A48BAB9/image-size/large?v=v2&amp;amp;px=999" role="button" title="annotated_footnote.PNG" alt="annotated_footnote.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my unsuccessful attempt at doing so:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / width=6in height=4in;


data anno_footnote1;
length function $10 anchor $20 drawspace $20;
function='text';
drawspace='GraphPercent';
x1=11; y1=4;
label= "NOTE: First line of annotated footnote.";
textcolor='gray77'; textsize=8;
width=100;
run;

data anno_footnote2;
length function $10 anchor $20 drawspace $20;
function='text';
drawspace='GraphPercent';
x2=11; y2=2;
label="SOURCES: Second line of annotated footnote.";
textcolor='gray77'; textsize=8;
width=5000;
run;

data anno_footnote;
	set anno_footnote1 anno_footnote2;
run;

proc sgplot data=sashelp.class noautolegend uniform=all sganno=anno_footnote;

bubble x=age y=height size=Weight / group=Sex;


run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Oct 2019 16:27:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598172#M172466</guid>
      <dc:creator>KRA15</dc:creator>
      <dc:date>2019-10-21T16:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: Line break for annotated footnote in proc sqplot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598180#M172471</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/294461"&gt;@KRA15&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data anno_footnote;
length function $10 anchor $20 drawspace $20 label $60;
anchor='bottomleft';
function='text';
drawspace='GraphPercent';
textcolor='gray77'; textsize=8;
width=100;
x1=1; y1=4;
label="NOTE: First line of annotated footnote.";
output;
x1=1; y1=0;
label="SOURCES: Second line of annotated footnote.";
output;
run;

proc sgplot data=sashelp.class noautolegend uniform=all sganno=anno_footnote pad=(bottom=10 pct);
bubble x=age y=height size=Weight / group=Sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Oct 2019 17:22:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598180#M172471</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-10-21T17:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Line break for annotated footnote in proc sqplot</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598190#M172477</link>
      <description>&lt;P&gt;I get decent looking results with:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / width=6in height=4in;


data anno_footnote;
length function $10 drawspace $20 label $100;
function='text';
drawspace='GraphPercent';
textcolor='gray77'; textsize=7; anchor="left";
width=100;

x1=5; y1=5;
label= "NOTE: First line of annotated footnote.";
output;

x1=5; y1=2;
label="SOURCES: Second line of annotated footnote.";
output;

run;

proc sgplot data=sashelp.class noautolegend uniform=all sganno=anno_footnote;
bubble x=age y=height size=Weight / group=Sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Oct 2019 17:43:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Line-break-for-annotated-footnote-in-proc-sqplot/m-p/598190#M172477</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-10-21T17:43:28Z</dc:date>
    </item>
  </channel>
</rss>

