<?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: GRADAR Problem in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125102#M4851</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since a bar chart will give you the control that you'd like to have, why not use a bar chart?&amp;nbsp; Bar charts far exceed the information conveyance of a radar chart - &lt;SPAN style="font-family: 'Arial','sans-serif'; color: green; font-size: 10pt;"&gt;&lt;A href="http://www.perceptualedge.com/articles/dmreview/radar_graphs.pdf"&gt;&lt;SPAN style="color: blue;"&gt;http://www.perceptualedge.com/articles/dmreview/radar_graphs.pdf&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2012 13:17:30 GMT</pubDate>
    <dc:creator>Bill</dc:creator>
    <dc:date>2012-09-25T13:17:30Z</dc:date>
    <item>
      <title>GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125096#M4845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Helou,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to make radar graph with proc gradar. I need to change axis range and legend. Unfortunately, I if I use axis statement, it doesn't affect to major ticks. There is following example in SAS support pages for this modifying, but it does work only partially:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format library=library;&lt;/P&gt;&lt;P&gt;value mnth&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1="Jan/Feb" 2="Mar/Apr" 3="May/Jun"&lt;/P&gt;&lt;P&gt;&amp;nbsp; 4="Jul/Aug" 5="Sep/Oct" 6="Nov/Dec";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;PRE class="jive-pre"&gt;data goals;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; input month Division $ value @@;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; format month mnth.;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; format value percentn7.0;&lt;BR /&gt;datalines;&lt;BR /&gt;1 Parts .43 1 Tools .82&lt;BR /&gt;2 Parts .86 2 Tools .32&lt;BR /&gt;3 Parts .70 3 Tools .65&lt;BR /&gt;4 Parts .35 4 Tools .52&lt;BR /&gt;5 Parts .84 5 Tools .62&lt;BR /&gt;6 Parts .55 6 Tools .43&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/PRE&gt;&lt;PRE class="jive-pre"&gt;goptions reset=all border hsize=5.15in vsize=4.2in;&lt;/PRE&gt;&lt;PRE class="jive-pre"&gt;axis1 order=(0 to .4 by .4, .6 to 1 by .2) value=(height=3pct c=blue tick=1 "");&lt;BR /&gt;axis2 order=(0 to .4 by .4, .6 to 1 by .2) value=none;&lt;/PRE&gt;&lt;PRE class="jive-pre"&gt;proc gradar data=goals;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; chart month / sumvar=value&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; staraxis=(axis1 axis2 axis2 axis2 axis2 axis2)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; noframe height=3.25&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; starinradius=0&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; overlayvar=division;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Labels are blue in axis1, but I got only labels 0.32, 0.59 and&amp;nbsp; 0.86. In legend there is problem too, because line and tex are limited. I'm using SAS enterprice guide 4.3.0 and sas 9.21.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 09:16:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125096#M4845</guid>
      <dc:creator>Harris</dc:creator>
      <dc:date>2012-09-19T09:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125097#M4846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Support for the axis statement order= option was added to gradar in SAS 9.3.&lt;/P&gt;&lt;P&gt;Since you are using SAS 9.21, you do not have that functionality yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a little more detail and an example of the new feature in 9.3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://robslink.com/SAS/democd50/new_93_sas.htm#radar" title="http://robslink.com/SAS/democd50/new_93_sas.htm#radar"&gt;Dr. Allison's best of the best of What's New in V9.3 SAS/GRAPH...&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2012 12:11:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125097#M4846</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-09-19T12:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125098#M4847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the information, Robert. Is there any posibility to change legend (position, label...) in the same way that it is possible in for example in bar chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 07:22:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125098#M4847</guid>
      <dc:creator>Harris</dc:creator>
      <dc:date>2012-09-20T07:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125099#M4848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure off-hand (I don't use radar charts very often).&amp;nbsp; What have you tried, and what results did you see (if any)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2012 12:10:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125099#M4848</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-09-21T12:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125100#M4849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did some more checking, and found that gradar supports a 'nolegend' option, but other than that does not support any legend control.&amp;nbsp; It does not honor a legend= option.&amp;nbsp; I have entered a request to hopefully get that added in the future.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2012 15:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125100#M4849</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-09-24T15:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125101#M4850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was also my conclusion. So Proc Gradar makes legend automatically, and only posibility is use annotate, if user wants to make legend in the different way. I hope they will add legend option in future, because it is inside other graphs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 05:48:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125101#M4850</guid>
      <dc:creator>Harris</dc:creator>
      <dc:date>2012-09-25T05:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: GRADAR Problem</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125102#M4851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since a bar chart will give you the control that you'd like to have, why not use a bar chart?&amp;nbsp; Bar charts far exceed the information conveyance of a radar chart - &lt;SPAN style="font-family: 'Arial','sans-serif'; color: green; font-size: 10pt;"&gt;&lt;A href="http://www.perceptualedge.com/articles/dmreview/radar_graphs.pdf"&gt;&lt;SPAN style="color: blue;"&gt;http://www.perceptualedge.com/articles/dmreview/radar_graphs.pdf&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2012 13:17:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GRADAR-Problem/m-p/125102#M4851</guid>
      <dc:creator>Bill</dc:creator>
      <dc:date>2012-09-25T13:17:30Z</dc:date>
    </item>
  </channel>
</rss>

