<?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 How to use SG annotation to add some text or circle in the graph in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131650#M5113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear there,&lt;/P&gt;&lt;P&gt;I am trying to add some text and a circle (oval) in a scatter plot coming out of SGPLOT, but just could not make it work .&amp;nbsp; Can someone help?&amp;nbsp; Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 10 Mar 2013 10:11:55 GMT</pubDate>
    <dc:creator>kathy</dc:creator>
    <dc:date>2013-03-10T10:11:55Z</dc:date>
    <item>
      <title>How to use SG annotation to add some text or circle in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131650#M5113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear there,&lt;/P&gt;&lt;P&gt;I am trying to add some text and a circle (oval) in a scatter plot coming out of SGPLOT, but just could not make it work .&amp;nbsp; Can someone help?&amp;nbsp; Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 10:11:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131650#M5113</guid>
      <dc:creator>kathy</dc:creator>
      <dc:date>2013-03-10T10:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use SG annotation to add some text or circle in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131651#M5114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an &lt;A href="http://blogs.sas.com/content/graphicallyspeaking/2012/06/25/graphical-swiss-army-knife/"&gt;article on SGANNOTATE &lt;/A&gt;by Dan Heath showing how to add Text and other figures such as OVALS, etc.&amp;nbsp; Note, the drawing context can be GRAPH, LAYOUT, WALL or DATA and the drawing coordinates can be in PIXEL, PERCENT or VALUE.&amp;nbsp; DRAWSPACE is a combination of the context and the coordinates, such as GRAPHPERCENT, DATAVALUE, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 20:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131651#M5114</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2013-03-10T20:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to use SG annotation to add some text or circle in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131652#M5115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your program, oval needs to use X1, Y1, HEIGHT and WIDTH columns.&amp;nbsp; Also, when you append the OVAL data set to ANNO, the "Height" and "Width" columns from "OVAL data set are being dropped.&amp;nbsp; Using a simple set statement with both data set works better:&lt;/P&gt;&lt;P&gt;data anno;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;retain drawspace "layoutpercent" linecolor "blue";&lt;BR /&gt;input function $ x1 y1 x2 y2 shape $ direction $;&lt;BR /&gt;datalines;&lt;BR /&gt;arrow 32 25 42 25 barbed in&lt;BR /&gt;arrow 65 25 75 15 barbed out&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data oval;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; retain drawspace "layoutpercent" linecolor "blue";&lt;BR /&gt;&amp;nbsp; input function $ height width x1 y1;&lt;BR /&gt;&amp;nbsp; datalines;&lt;BR /&gt;&amp;nbsp; oval 20 30 70 15&lt;BR /&gt; ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;data anno2;&lt;BR /&gt;&amp;nbsp; set anno oval;&lt;BR /&gt;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=enso noautolegend tmplout="test1" sganno=anno2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; title 'Atmospheric Pressure Differences Between '&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Easter Island and Darwin, Australia';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pbspline y=pressure x=year;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SGPlot9.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/3175_SGPlot9.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Mar 2013 21:21:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131652#M5115</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2013-03-10T21:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to use SG annotation to add some text or circle in the graph</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131653#M5116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Sanjey.&amp;nbsp; It worked.&amp;nbsp; You are the true master.&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Mar 2013 16:40:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-use-SG-annotation-to-add-some-text-or-circle-in-the-graph/m-p/131653#M5116</guid>
      <dc:creator>kathy</dc:creator>
      <dc:date>2013-03-14T16:40:19Z</dc:date>
    </item>
  </channel>
</rss>

