<?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: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550319#M17999</link>
    <description>&lt;P&gt;I'm looking at the example and I'm not sure why the x-axis label is being suppressed to begin with. The XAXISOPTS doesn't have a DISPLAY option listed, so I would have assumed it would print the x-axis label by default. To add to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt; if there is a reason to use drawtext for the label, but you still want the label space to be allocated you can make the x-axis label unbreakable spaces.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc template;
define statgraph blah;
begingraph;

layout overlay / xaxisopts=(label='A0A0A0'x);
scatterplot x=height y=weight;
drawtext textattrs=(color=black size=15) "days" / y=0 x=50 yspace=layoutpercent xspace=graphpercent width=50 justify=center
   anchor=bottom layer=front;
endlayout;

endgraph;
end;
run;
ods graphics /reset;
proc sgrender data=sashelp.class template=blah;
run;&lt;/CODE&gt;&lt;/PRE&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="SGRender.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28652i4E9839987B909C40/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGRender.png" alt="SGRender.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 Apr 2019 16:20:05 GMT</pubDate>
    <dc:creator>JeffMeyers</dc:creator>
    <dc:date>2019-04-11T16:20:05Z</dc:date>
    <item>
      <title>Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GTL</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550103#M17994</link>
      <description>&lt;P&gt;I tried to add reference line label and X-axis label using drawtext statement in proc template in order to avoid overlapping with X-axis tick value. However the added labels are not displayed correctly which seems due to small space between figure border and x-axis.Could you help me figure out what's wrong with my code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*--Define template--*/&lt;BR /&gt;proc template;&lt;/P&gt;&lt;P&gt;define statgraph RefLineLabel ;&lt;BR /&gt;begingraph;&lt;BR /&gt;entrytitle "";&lt;BR /&gt;layout overlay/XAXISOPTS=(linearopts=(viewmax=200) )&lt;BR /&gt;YAXISOPTS=(label='Fold increase over baseline');&lt;BR /&gt;seriesplot x=studyday y=aval2base / name='a' display=all;&lt;BR /&gt;referenceline x=eventday / /*curvelabel=event*/ lineattrs=(color=red pattern=dot)&lt;BR /&gt;curvelabellocation=outside CURVELABELPOSITION=auto curvelabelattrs=(color=red);&lt;BR /&gt;drawtext textattrs=(color=black size=15) "Days" /Y=0.5 x=50 yspace=graphpercent&lt;BR /&gt;xspace=graphpercent width=50 justify=center layer=front;&lt;BR /&gt;drawtext textattrs=(color=red size=15) "Adverse event" /Y=-5 x=3 xspace=datavalue yspace=datapercent&lt;BR /&gt;rotate=90 anchor=top width=15 justify=center;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*--Create Graph--*/&lt;BR /&gt;proc sgrender data=example template=RefLineLabel;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my figure&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="捕获.PNG" style="width: 576px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28634i0CDCDBE95D62E46C/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.PNG" alt="捕获.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>Thu, 11 Apr 2019 01:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550103#M17994</guid>
      <dc:creator>CathyHe</dc:creator>
      <dc:date>2019-04-11T01:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550268#M17998</link>
      <description>&lt;P&gt;To label the X-axis you will likely be better off using the LABEL= option on the XAXISOPTS so the label text is included in the graph size determination. DRAWTEXT is applied over a graph and space is not allocated so you will likely spend a lot of time with each graph you make trying to force DRAWTEXT to create a nice enough label.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;layout overlay/XAXISOPTS=(linearopts=(viewmax=200) label="Days"&amp;nbsp;)&lt;BR /&gt;YAXISOPTS=(label='Fold increase over baseline');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are most likely specifying the wrong coordinates for the DRAWTEXT for the reference line. You might investigate the CURVELABEL option for the referEnceline statement along with CURVELABELLOCATION=INSIDE and CURVELABELPOSITION&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 15:10:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550268#M17998</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-11T15:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550319#M17999</link>
      <description>&lt;P&gt;I'm looking at the example and I'm not sure why the x-axis label is being suppressed to begin with. The XAXISOPTS doesn't have a DISPLAY option listed, so I would have assumed it would print the x-axis label by default. To add to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt; if there is a reason to use drawtext for the label, but you still want the label space to be allocated you can make the x-axis label unbreakable spaces.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc template;
define statgraph blah;
begingraph;

layout overlay / xaxisopts=(label='A0A0A0'x);
scatterplot x=height y=weight;
drawtext textattrs=(color=black size=15) "days" / y=0 x=50 yspace=layoutpercent xspace=graphpercent width=50 justify=center
   anchor=bottom layer=front;
endlayout;

endgraph;
end;
run;
ods graphics /reset;
proc sgrender data=sashelp.class template=blah;
run;&lt;/CODE&gt;&lt;/PRE&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="SGRender.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28652i4E9839987B909C40/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGRender.png" alt="SGRender.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 16:20:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550319#M17999</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2019-04-11T16:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550324#M18000</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/2153"&gt;@JeffMeyers&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm looking at the example and I'm not sure why the x-axis label is being suppressed to begin with. The XAXISOPTS doesn't have a DISPLAY option listed, so I would have assumed it would print the x-axis label by default. To add to &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt; if there is a reason to use drawtext for the label, but you still want the label space to be allocated you can make the x-axis label unbreakable spaces.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc template;
define statgraph blah;
begingraph;

layout overlay / xaxisopts=(label='&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;A0A0A0&lt;/FONT&gt;&lt;/STRONG&gt;'x);
scatterplot x=height y=weight;
drawtext textattrs=(color=black size=15) "days" / y=0 x=50 yspace=layoutpercent xspace=graphpercent width=50 justify=center
   anchor=bottom layer=front;
endlayout;

endgraph;
end;
run;
ods graphics /reset;
proc sgrender data=sashelp.class template=blah;
run;&lt;/CODE&gt;&lt;/PRE&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="SGRender.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28652i4E9839987B909C40/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGRender.png" alt="SGRender.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What ASCII (or EBCDIC) character are you attempting to show with &lt;CODE class=" language-sas"&gt;'&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;A0A0A0&lt;/FONT&gt;&lt;/STRONG&gt;'x&lt;/CODE&gt;?&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;xaxisopts&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;=(label=&lt;/FONT&gt;&lt;FONT color="#800080" face="SAS Monospace" size="2"&gt;'45'x&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;) will display an "E" as the label&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;Please see:&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt; proc template;
define statgraph blah;
begingraph;

layout overlay / xaxisopts=(labelattrs=(color=black size=15pt)label='Days' );
scatterplot x=height y=weight;
/*drawtext textattrs=(color=black size=15) "days" / y=0 x=50 yspace=layoutpercent xspace=graphpercent width=50 justify=center*/
/*   anchor=bottom layer=front;*/
endlayout;

endgraph;
end;
run;
ods graphics /reset;
proc sgrender data=sashelp.class template=blah;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Apr 2019 16:31:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/550324#M18000</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-11T16:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552021#M18003</link>
      <description>&lt;P&gt;It sitll doesn't work when reference line label option is off.&amp;nbsp; I also tried changing yspace from datapercent to graphpercent and it didn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*--Define template--*/&lt;BR /&gt;proc template;&lt;/P&gt;&lt;P&gt;define statgraph RefLineLabel ;&lt;BR /&gt;begingraph;&lt;BR /&gt;entrytitle "";&lt;BR /&gt;layout overlay/XAXISOPTS=(linearopts=(viewmax=200) )&lt;BR /&gt;YAXISOPTS=(label='Fold increase over baseline');&lt;BR /&gt;seriesplot x=studyday y=aval2base2 / name='a' display=all;&lt;BR /&gt;referenceline x=eventday / /*curvelabel=event*/ lineattrs=(color=red pattern=dot)&lt;BR /&gt;/*curvelabellocation=outside CURVELABELPOSITION=auto curvelabelattrs=(color=red)*/;&lt;BR /&gt;drawtext textattrs=(color=black size=15) "Days" /Y=0.5 x=50 yspace=graphpercent&lt;BR /&gt;xspace=graphpercent width=50 justify=center layer=front;&lt;BR /&gt;drawtext textattrs=(color=red size=15) "Adverse event" /Y=-5 x=3 xspace=datavalue yspace=graph&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="捕获.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28778i16EB441882426A88/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.PNG" alt="捕获.PNG" /&gt;&lt;/span&gt;percent&lt;BR /&gt;rotate=90 anchor=top width=15 justify=center;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*--Create Graph--*/&lt;BR /&gt;proc sgrender data=example template=RefLineLabel;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 07:59:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552021#M18003</guid>
      <dc:creator>CathyHe</dc:creator>
      <dc:date>2019-04-18T07:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552023#M18004</link>
      <description>&lt;P&gt;It still doesn't work when label options for reference line are off. I also tried changing yspace from datapercent to graphpercent in order to diaplay "Adverse event" properly below x-axis, however it doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*--Define template--*/&lt;BR /&gt;proc template;&lt;/P&gt;&lt;P&gt;define statgraph RefLineLabel ;&lt;BR /&gt;begingraph;&lt;BR /&gt;entrytitle "";&lt;BR /&gt;layout overlay/XAXISOPTS=(linearopts=(viewmax=200) )&lt;BR /&gt;YAXISOPTS=(label='Fold increase over baseline');&lt;BR /&gt;seriesplot x=studyday y=aval2base2 / name='a' display=all;&lt;BR /&gt;referenceline x=eventday / /*curvelabel=event*/ lineattrs=(color=red pattern=dot)&lt;BR /&gt;/*curvelabellocation=outside CURVELABELPOSITION=auto curvelabelattrs=(color=red)*/;&lt;BR /&gt;drawtext textattrs=(color=black size=15) "Days" /Y=0.5 x=50 yspace=graphpercent&lt;BR /&gt;xspace=graphpercent width=50 justify=center layer=front;&lt;BR /&gt;drawtext textattrs=(color=red size=15) "Adverse event" /Y=-5 x=3 xspace=datavalue yspace=graphpercent&lt;BR /&gt;rotate=90 anchor=top width=15 justify=center;&lt;BR /&gt;endlayout;&lt;BR /&gt;endgraph;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*--Create Graph--*/&lt;BR /&gt;proc sgrender data=example template=RefLineLabel;&lt;BR /&gt;run;&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="捕获.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28779i73EF75E6E1F78EFF/image-size/large?v=v2&amp;amp;px=999" role="button" title="捕获.PNG" alt="捕获.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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 08:05:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552023#M18004</guid>
      <dc:creator>CathyHe</dc:creator>
      <dc:date>2019-04-18T08:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552087#M18005</link>
      <description>&lt;P&gt;Perhaps rather than using GTL and proc sgrender, you could use proc sgplot and annotate the label?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data anno_text;&lt;BR /&gt;length label $100 anchor x1space y1space function $50 textcolor $12;&lt;BR /&gt;function='text';&lt;BR /&gt;x1space='datavalue'; y1space='datapercent';&lt;BR /&gt;textcolor='red'; textsize=9; textweight='normal';&lt;BR /&gt;width=100; widthunit='percent'; rotate=90;&lt;BR /&gt;x1='11sep2001'd; y1=-12; anchor='right'; label='9/11 attack'; output;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title "IBM Stock Price";&lt;BR /&gt;proc sgplot data=sashelp.stocks (where=(stock='IBM')) pad=(bottom=20pct) sganno=anno_text;&lt;BR /&gt;series y=close x=date / markers;&lt;BR /&gt;yaxis display=(nolabel);&lt;BR /&gt;xaxis display=(nolabel);&lt;BR /&gt;refline '11sep2001'd / axis=x lineattrs=(color=red pattern=dot);&lt;BR /&gt;run;&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="sgplot_anno.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28787iF4F174683F3C8D2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="sgplot_anno.png" alt="sgplot_anno.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 12:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552087#M18005</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-04-18T12:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552141#M18006</link>
      <description>&lt;P&gt;Whether you use DRAWTEXT with GTL or annotation with the SG procedures, the key is what&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp;demonstrates in his example. Since you have the text value rotated you *MUST* also reserve space for the annotation, because the graph will not do that automatically, Think of annotation as an overlay (or underlay) of the actual graph. The PAD option&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp;used with SGPLOT can also be used in GTL to reserve that space.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 14:39:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/552141#M18006</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-04-18T14:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/553926#M18036</link>
      <description>&lt;P&gt;Found the solution finally. It works when adding PAD option! Many thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 12:12:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/553926#M18036</guid>
      <dc:creator>CathyHe</dc:creator>
      <dc:date>2019-04-25T12:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/553928#M18037</link>
      <description>&lt;P&gt;Thank you very much! It's a very good solution which inspire me how to reserve a space for annotation! &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2019 12:15:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/553928#M18037</guid>
      <dc:creator>CathyHe</dc:creator>
      <dc:date>2019-04-25T12:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reference line label and X-axis label are truncated in figure drawed by DRAWTEXT statement in GT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/554036#M18038</link>
      <description>Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;,
   The 'A0'x is an unbreakable space.  This is similar to a space in that it doesn't show anything (it's a blank space), but SAS considers it a character.  In situations where a regular space would be ignored by SAS procedures an unbreakable space will be treated like any other character ('A', 'W', anything).  In this case, when the label is set to be a blank (e.g. label=' ') I believe SAS ignores it and prints the x variable's label.  But with an unbreakable space it leaves it alone so you can add a blank label and still allocate the graph space for it.</description>
      <pubDate>Thu, 25 Apr 2019 17:51:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Reference-line-label-and-X-axis-label-are-truncated-in-figure/m-p/554036#M18038</guid>
      <dc:creator>JeffMeyers</dc:creator>
      <dc:date>2019-04-25T17:51:57Z</dc:date>
    </item>
  </channel>
</rss>

