<?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 justfiying text on a forest plot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155877#M5826</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a forest plot and hanving read the previous papers about indenting text and the subgroup issue I have a fairly similar piece of code to everyone else. However, even though Im using a non-proportional font (as per other example) and output to pdf rather than doc, Im still getting my columns centre justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help would be appreciated. Ive attached the code, pdf and png file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11375i16BC47A1F055F104/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SGRender24.png" title="SGRender24.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Jan 2014 16:42:51 GMT</pubDate>
    <dc:creator>Adie_efc</dc:creator>
    <dc:date>2014-01-29T16:42:51Z</dc:date>
    <item>
      <title>justfiying text on a forest plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155877#M5826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a forest plot and hanving read the previous papers about indenting text and the subgroup issue I have a fairly similar piece of code to everyone else. However, even though Im using a non-proportional font (as per other example) and output to pdf rather than doc, Im still getting my columns centre justified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help would be appreciated. Ive attached the code, pdf and png file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11375i16BC47A1F055F104/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="SGRender24.png" title="SGRender24.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:42:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155877#M5826</guid>
      <dc:creator>Adie_efc</dc:creator>
      <dc:date>2014-01-29T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: justfiying text on a forest plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155878#M5827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;....using SAS 9.3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 16:45:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155878#M5827</guid>
      <dc:creator>Adie_efc</dc:creator>
      <dc:date>2014-01-29T16:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: justfiying text on a forest plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155879#M5828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you use the MARKERCHARACTER to display such labels, the text string is always placed center justified with the location of the marker (not drawn).&amp;nbsp; So, you would have to jump through some hoops to get the alignment you want, even with the non-proportional fonts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, with SAS 9.3, you have more options.&amp;nbsp; SAS 9.3 supports a user specified data label position for the scatter plot.&amp;nbsp; So, instead of using MarkerCharacter, change you code to use regular scatterplot with DataLabel.&amp;nbsp; Use&amp;nbsp; DataLabelPosition =LEFT or RIGHT or CENTER as needed.&amp;nbsp; Proportional fonts will be OK.&amp;nbsp; Set marker size to zero.&amp;nbsp; Here is some sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;BR /&gt;&amp;nbsp; define statgraph datalabel;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dynamic _pos;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; begingraph;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; entrytitle 'Weight by Height for all Students';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; scatterplot x=sex y=weight / datalabel=name datalabelposition=_pos markerattrs=(size=0);&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endlayout;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; endgraph;&lt;BR /&gt;&amp;nbsp; end;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ods graphics / reset width=5in height=3in imagename='datalabel_left';&lt;BR /&gt;proc sgrender data=sashelp.class template=datalabel;&lt;BR /&gt;&amp;nbsp; dynamic _pos='left';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics / reset width=5in height=3in imagename='datalabel_right';&lt;BR /&gt;proc sgrender data=sashelp.class template=datalabel;&lt;BR /&gt;&amp;nbsp; dynamic _pos='right';&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="4821" alt="datalabel_right1.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/4821_datalabel_right1.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 17:05:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155879#M5828</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-01-29T17:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: justfiying text on a forest plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155880#M5829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant. Thanks. that worked perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jan 2014 17:27:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155880#M5829</guid>
      <dc:creator>Adie_efc</dc:creator>
      <dc:date>2014-01-29T17:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: justfiying text on a forest plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155881#M5830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2014/02/02/ways-to-include-textual-data-columns-in-graphs/"&gt;new blog article&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 14:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/justfiying-text-on-a-forest-plot/m-p/155881#M5830</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-02-05T14:31:57Z</dc:date>
    </item>
  </channel>
</rss>

