<?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 Quick Question on using annotate to create a custom symbol in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24244#M683</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Your options might involve placing text from the MARKER font or use PROC GFONT to create a graphic font from scratch to show what you want .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The %LABEL annotate macro would be the way to use either of these.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jan 2012 14:29:06 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2012-01-05T14:29:06Z</dc:date>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24241#M680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can change the function to 'point' and get a tiny point in the attached code (text file), but I'm missing some critical detail to get an actual symbol of any size or type out of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My original intent was to set up something so that a particular and unique point from a data set gets a large, special, and unique symbol so that receipients of the graph can easy see where one particular point lies in relation to all the others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grateful for any suggestions.&lt;/P&gt;&lt;P&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 17:48:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24241#M680</guid>
      <dc:creator>gm_sas</dc:creator>
      <dc:date>2012-01-04T17:48:36Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24242#M681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data wc; input grp $ 5. height weight; datalines; east 55 125 east 60 175 west 62 175 south 55 135 north 62 195 west 50 115 ; run; goptions reset=all gunit=pct ftext='calibri' htext=2; symbol v=dot h=2; axis1 label=(a=0 "Weight") order=100 to 200 by 10; axis2 label=(angle=90 "Height") order=40 to 100 by 10; legend1; legend2; data singlepoint (keep= xsys ysys hsys function style color size x y); set wc ; xsys = '2'; ysys = '2'; hsys = '3'; function ='symbol'; style = 'marker'; color ='black'; size=10; x =100; y =50; when = 'A'; run; proc gplot data=wc anno=singlepoint; plot height*weight =grp / haxis=axis1 vaxis=axis2 legend=legend1 anno=singlepoint ; run; quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 19:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24242#M681</guid>
      <dc:creator>gm_sas</dc:creator>
      <dc:date>2012-01-04T19:38:41Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24243#M682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way to annotate a 'dot' and have control over the size is to use the 'pie' function, and control the size (radius).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function='pie';&lt;/P&gt;&lt;P&gt;rotate=360;&lt;/P&gt;&lt;P&gt;style='psolid';&lt;/P&gt;&lt;P&gt;color='blue';&lt;/P&gt;&lt;P&gt;size=5;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternately, you can use the annotate 'label' function, and specify any font you want (via the style variable), and then use any character of that font.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 19:43:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24243#M682</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-01-04T19:43:27Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24244#M683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Your options might involve placing text from the MARKER font or use PROC GFONT to create a graphic font from scratch to show what you want .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The %LABEL annotate macro would be the way to use either of these.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 14:29:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24244#M683</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-01-05T14:29:06Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24245#M684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to you both for your replies.&amp;nbsp; The pie function did not work, but the label function did, thanks!&amp;nbsp; I'm not (yet) into macros, but I'll keep that one in mind&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have noticed that in my x-setting statement, the x is in blue, while the y in the y-setting statement is in black.&amp;nbsp; Is this normal - why would SAS treat x as a key word?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 16:46:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24245#M684</guid>
      <dc:creator>gm_sas</dc:creator>
      <dc:date>2012-01-05T16:46:49Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24246#M685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; X is a key word. It is a command used to run operating system commands.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 18:26:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24246#M685</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-01-05T18:26:03Z</dc:date>
    </item>
    <item>
      <title>Quick Question on using annotate to create a custom symbol</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24247#M686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; SAS is a great big world...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2012 18:57:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Quick-Question-on-using-annotate-to-create-a-custom-symbol/m-p/24247#M686</guid>
      <dc:creator>gm_sas</dc:creator>
      <dc:date>2012-01-05T18:57:21Z</dc:date>
    </item>
  </channel>
</rss>

