<?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: Use of SYMBOL for annotation in SGRENDER in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766674#M243001</link>
    <description>&lt;P&gt;Did the log show anything odd?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have to share 1) the SGrender code, 2) the template definition and 3) some example data to plot.&lt;/P&gt;</description>
    <pubDate>Wed, 08 Sep 2021 19:15:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-09-08T19:15:17Z</dc:date>
    <item>
      <title>Use of SYMBOL for annotation in SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766664#M242993</link>
      <description>&lt;P&gt;Hi Experts,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here I have a question on how to use the annotation dataset with function='SYMBOL' to display triangle with black color filled. I want to use this annotated dataset in proc SGRENDER with proc template. But I cannot see the symbol plotted in the graph at all. Your inputs are highly appreciated on where I am going wrong.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; DATA anno;
ATTRIB FUNCTION LENGTH = $20;
FUNCTION = "SYMBOL";
text='TRIANGLE';
style='marker';
X1 = 6;
Y1 = 187;
position='3';
anchor='';
size=3;
color='black';
OUTPUT;
RUN;&lt;BR /&gt;&lt;BR /&gt;in the proc template after the overlay i used the annotate statement as well&lt;BR /&gt;&lt;BR /&gt;proc sgrender data=want template=plot sganno=anno;&lt;BR /&gt;run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 08 Sep 2021 18:41:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766664#M242993</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2021-09-08T18:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Use of SYMBOL for annotation in SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766674#M243001</link>
      <description>&lt;P&gt;Did the log show anything odd?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may have to share 1) the SGrender code, 2) the template definition and 3) some example data to plot.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 19:15:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766674#M243001</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-09-08T19:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use of SYMBOL for annotation in SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766700#M243005</link>
      <description>Good question last time I checked on this, SAS provides only provides Arrow, image, line ,oval, polycont,ploygon,rectangle, text and textcont function, SAS did not have Symbol function. Would suggest yusing symbolchar statement, combined with attrmap</description>
      <pubDate>Wed, 08 Sep 2021 21:08:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766700#M243005</guid>
      <dc:creator>himself</dc:creator>
      <dc:date>2021-09-08T21:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Use of SYMBOL for annotation in SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766722#M243011</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310015"&gt;@himself&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Good question last time I checked on this, SAS provides only provides Arrow, image, line ,oval, polycont,ploygon,rectangle, text and textcont function, SAS did not have Symbol function. Would suggest yusing symbolchar statement, combined with attrmap&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Hasn't changed from the documentation at &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatgraph/n08al3evnkckrjn1hi3p8cw3vfw5.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatgraph/n08al3evnkckrjn1hi3p8cw3vfw5.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I suspect has happened is that &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12151"&gt;@Jagadishkatam&lt;/a&gt; has found the documentation for SAS/Graph, the device based graphics system annotation, which does have a Symbol function, and is attempting to use the incompatible instructions with the SGanno annotate facility.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Text with the correct font/character set may work&lt;/P&gt;</description>
      <pubDate>Wed, 08 Sep 2021 22:36:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Use-of-SYMBOL-for-annotation-in-SGRENDER/m-p/766722#M243011</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-09-08T22:36:53Z</dc:date>
    </item>
  </channel>
</rss>

