<?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: Values grouped together in Pie Chart using Proc Template and Proc SGRENDER in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Values-grouped-together-in-Pie-Chart-using-Proc-Template-and/m-p/665438#M198983</link>
    <description>&lt;P&gt;OTHERSLICE=&lt;SPAN class="xisDoc-choice"&gt;TRUE&lt;/SPAN&gt;&lt;SPAN class="xisDoc-choice"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;| FALSE&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="xisDoc-argumentDescription"&gt;&lt;P&gt;&lt;SPAN class="xisDoc-shortDescription"&gt;specifies whether to consolidate smaller pie slices into a single slice that represents “other” values that are in the data, or whether to display those smaller slices as separate pie slices.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xisDoc-paraSimpleFirst"&gt;If this option is set to FALSE, then all unique category values appear as slices. If this option is set to TRUE, then some of the smaller slices might be combined into a single slice, referred to as the Other slice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="xisDoc-paraSimpleFirst"&gt;The solution is to add "otherslice = false"&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PIECHART CATEGORY = Test_Program_Status /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Otherslice = false&lt;BR /&gt;&lt;SPAN&gt;DATALABELLOCATION = INSIDE&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jun 2020 19:30:11 GMT</pubDate>
    <dc:creator>Zifferfoot</dc:creator>
    <dc:date>2020-06-26T19:30:11Z</dc:date>
    <item>
      <title>Values grouped together in Pie Chart using Proc Template and Proc SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Values-grouped-together-in-Pie-Chart-using-Proc-Template-and/m-p/665182#M198845</link>
      <description>&lt;P&gt;I am making a pie chart for the variable Test_Program_Status. There are 5 options "InProgress" "Approved" "Planning" "Complete" and "."&lt;/P&gt;&lt;P&gt;My data has:&lt;/P&gt;&lt;P&gt;173 Complete&lt;/P&gt;&lt;P&gt;18 InProgress&lt;/P&gt;&lt;P&gt;1 Planning and&lt;/P&gt;&lt;P&gt;4 null values.&lt;/P&gt;&lt;P&gt;I am using Proc Template and then Proc SGRENDER to create the pie chart. The problem I'm having is that it is grouping my variable status of Planning and null into one and calling it "Other". So I have 173 Complete 18 InProgress and 5 Other. How do I get the pie chart to show all values of my variable and not group them together?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is below:&lt;/P&gt;&lt;P&gt;PROC TEMPLATE;&lt;BR /&gt;DEFINE STATGRAPH pie;&lt;BR /&gt;Dynamic Title;&lt;BR /&gt;BEGINGRAPH / border=false designheight=450 ;&lt;/P&gt;&lt;P&gt;discreteattrmap name="piecolors";&lt;BR /&gt;value "InProgress" / fillattrs=(color=Orange);&lt;BR /&gt;value "Approved" / fillattrs=(color=Green);&lt;BR /&gt;value "Planning" / fillattrs=(color=Yellow);&lt;BR /&gt;value "Complete" / fillattrs=(color=Blue);&lt;BR /&gt;value "." / fillattrs=(color=Red);&lt;BR /&gt;enddiscreteattrmap;&lt;BR /&gt;discreteattrvar attrvar=Test_Program_Status var=Test_Program_Status attrmap="piecolors";&lt;BR /&gt;Entrytitle Title5 / textattrs=(color=black size=12pt weight=bold);&lt;BR /&gt;&lt;BR /&gt;LAYOUT REGION;&lt;BR /&gt;&lt;BR /&gt;PIECHART CATEGORY = Test_Program_Status /&lt;BR /&gt;DATALABELLOCATION = INSIDE&lt;BR /&gt;Datalabelattrs = (weight=bold size=16)&lt;BR /&gt;DATALABELCONTENT = (RESPONSE)&lt;BR /&gt;CATEGORYDIRECTION = CLOCKWISE&lt;BR /&gt;DATASKIN = NONE&lt;BR /&gt;START =90 NAME = 'pie';&lt;BR /&gt;DISCRETELEGEND 'pie' / border=false valueattrs=(color=black size=12pt);&lt;BR /&gt;ENDLAYOUT;&lt;BR /&gt;ENDGRAPH;&lt;BR /&gt;END;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;PROC SGRENDER DATA = Tst_Pgm_Data&lt;BR /&gt;TEMPLATE = pie;&lt;BR /&gt;dynamic Title = "Reviews Scheduled During the Period";&lt;BR /&gt;RUN;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 22:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Values-grouped-together-in-Pie-Chart-using-Proc-Template-and/m-p/665182#M198845</guid>
      <dc:creator>Zifferfoot</dc:creator>
      <dc:date>2020-06-25T22:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Values grouped together in Pie Chart using Proc Template and Proc SGRENDER</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Values-grouped-together-in-Pie-Chart-using-Proc-Template-and/m-p/665438#M198983</link>
      <description>&lt;P&gt;OTHERSLICE=&lt;SPAN class="xisDoc-choice"&gt;TRUE&lt;/SPAN&gt;&lt;SPAN class="xisDoc-choice"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;| FALSE&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class="xisDoc-argumentDescription"&gt;&lt;P&gt;&lt;SPAN class="xisDoc-shortDescription"&gt;specifies whether to consolidate smaller pie slices into a single slice that represents “other” values that are in the data, or whether to display those smaller slices as separate pie slices.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xisDoc-paraSimpleFirst"&gt;If this option is set to FALSE, then all unique category values appear as slices. If this option is set to TRUE, then some of the smaller slices might be combined into a single slice, referred to as the Other slice.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="xisDoc-paraSimpleFirst"&gt;The solution is to add "otherslice = false"&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PIECHART CATEGORY = Test_Program_Status /&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Otherslice = false&lt;BR /&gt;&lt;SPAN&gt;DATALABELLOCATION = INSIDE&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 19:30:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Values-grouped-together-in-Pie-Chart-using-Proc-Template-and/m-p/665438#M198983</guid>
      <dc:creator>Zifferfoot</dc:creator>
      <dc:date>2020-06-26T19:30:11Z</dc:date>
    </item>
  </channel>
</rss>

