<?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: SAS 9.4 GTL Pie Charts in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140540#M5316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no RADIUS option for GTL Pie Chart, which is a basic component, without many options.&amp;nbsp; This is so because Pie Charts are not very commonly used in the statistical domain.&amp;nbsp; Now, if all your labels are INSIDE, and no other varying size items like legends, you are likely to get the same size pie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Sep 2014 14:43:01 GMT</pubDate>
    <dc:creator>Jay54</dc:creator>
    <dc:date>2014-09-11T14:43:01Z</dc:date>
    <item>
      <title>SAS 9.4 GTL Pie Charts</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140537#M5313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to force the size of the actual pie to be constant across various versions (ie different variables runs) in GTL? Right now it is dependent on the Category label sizes which can change over different variables causing a wide variety of pie sizes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the GTL code that Im using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define statgraph piechart;&lt;/P&gt;&lt;P&gt;&amp;nbsp; begingraph / labelplacement=SA;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dynamic _var _title _sz _dlc _dll;&lt;/P&gt;&lt;P&gt;&amp;nbsp; entrytitle _title / textattrs=(size=13pt weight=bold);&lt;/P&gt;&lt;P&gt;&amp;nbsp; layout region;&lt;/P&gt;&lt;P&gt;&amp;nbsp; piechart category=_var response=percent /&lt;/P&gt;&lt;P&gt;&amp;nbsp; dataskin=pressed&lt;/P&gt;&lt;P&gt;&amp;nbsp; stat=sum&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalabelcontent= _dlc&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalabellocation= _dll&lt;/P&gt;&lt;P&gt;&amp;nbsp; datalabelattrs=(size=_sz weight=bold);&lt;/P&gt;&lt;P&gt;&amp;nbsp; endlayout;&lt;/P&gt;&lt;P&gt;&amp;nbsp; endgraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 12:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140537#M5313</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2014-09-11T12:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 GTL Pie Charts</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140538#M5314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think what Im looking for is something similar to the radius option in gchart but for GTL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 14:15:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140538#M5314</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2014-09-11T14:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 GTL Pie Charts</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140539#M5315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just realized I forgot to add my render code above:&lt;/P&gt;&lt;P&gt;proc sgrender data=q1q2 template=piechart;&lt;/P&gt;&lt;P&gt;&amp;nbsp; where q1 ne ''; &lt;/P&gt;&lt;P&gt;&amp;nbsp; dynamic _var = 'Q1'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _title = "Q1: How long have you been a Medicaid provider?"&lt;/P&gt;&lt;P&gt;&amp;nbsp; _sz = '10pt'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _dlc = 'Percent'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _dll = 'Auto'&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgrender data=q1q2 template=piechart;&lt;/P&gt;&lt;P&gt;&amp;nbsp; where q2 ne ''; &lt;/P&gt;&lt;P&gt;&amp;nbsp; dynamic _var = 'Q2'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _title = "Q2: What is your provider type?"&lt;/P&gt;&lt;P&gt;&amp;nbsp; _sz = '10pt'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _dlc = 'Percent'&lt;/P&gt;&lt;P&gt;&amp;nbsp; _dll = 'Auto'&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 14:35:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140539#M5315</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2014-09-11T14:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 GTL Pie Charts</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140540#M5316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, there is no RADIUS option for GTL Pie Chart, which is a basic component, without many options.&amp;nbsp; This is so because Pie Charts are not very commonly used in the statistical domain.&amp;nbsp; Now, if all your labels are INSIDE, and no other varying size items like legends, you are likely to get the same size pie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 14:43:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-9-4-GTL-Pie-Charts/m-p/140540#M5316</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2014-09-11T14:43:01Z</dc:date>
    </item>
  </channel>
</rss>

