<?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: How to explode slice on pie chart using using GTL? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213891#M7951</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sanjay, your answer makes me clear about this option in GTL as I thought earlier there might have way in GTL to do it which I could not able to find out. I did this as following way based on your suggestion,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA usedata;&lt;/P&gt;&lt;P&gt;INPUT slicenm $ 1-8 val;&lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;Slice A&amp;nbsp; 4.5&lt;/P&gt;&lt;P&gt;Slice B&amp;nbsp; 5.8&lt;/P&gt;&lt;P&gt;Slice C&amp;nbsp; 7.2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS DEVICE=png;&lt;/P&gt;&lt;P&gt;PROC GCHART DATA=usedata; &lt;/P&gt;&lt;P&gt; PIE slicenm / TYPE=SUM SUMVAR=val &lt;/P&gt;&lt;P&gt; EXPLODE="Slice A" ANGLE=0 ASCENDING NOHEADING&amp;nbsp; &lt;/P&gt;&lt;P&gt; VALUE=inside SLICE=outside;&amp;nbsp; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 May 2015 16:52:07 GMT</pubDate>
    <dc:creator>zahirraihan</dc:creator>
    <dc:date>2015-05-13T16:52:07Z</dc:date>
    <item>
      <title>How to explode slice on pie chart using using GTL?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213889#M7949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have following code,&lt;/P&gt;&lt;P&gt;DATA usedata;&lt;/P&gt;&lt;P&gt;INPUT slicenm $ 1-8 val;&lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;Slice A&amp;nbsp; 4.5&lt;/P&gt;&lt;P&gt;Slice B&amp;nbsp; 5.8&lt;/P&gt;&lt;P&gt;Slice C&amp;nbsp; 7.2;&lt;/P&gt;&lt;P&gt;RUN;&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; DYNAMIC _name _value;&lt;/P&gt;&lt;P&gt;&amp;nbsp; BEGINGRAPH;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LAYOUT LATTICE;&lt;/P&gt;&lt;P&gt;&amp;nbsp; LAYOUT REGION;&lt;/P&gt;&lt;P&gt;&amp;nbsp; piechart category=_name response=_value / dataskin=sheen datalabellocation=inside;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDLAYOUT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDLAYOUT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDGRAPH;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SGRENDER DATA=usedata TEMPLATE=piechart;&lt;/P&gt;&lt;P&gt;&amp;nbsp; DYNAMIC _name="slicenm" _value="val";&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I explode specific slice on piechart using GTL? Can you please help me?&lt;/P&gt;&lt;P&gt;My expected output is like following:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="post.png" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/10367_post.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 08:43:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213889#M7949</guid>
      <dc:creator>zahirraihan</dc:creator>
      <dc:date>2015-05-13T08:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to explode slice on pie chart using using GTL?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213890#M7950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no built-in easy way to explode a slice in GTL.&amp;nbsp; I suggest using PROC GCHART, with the PIE statement and EXPLODE option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 12:50:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213890#M7950</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-05-13T12:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to explode slice on pie chart using using GTL?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213891#M7951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sanjay, your answer makes me clear about this option in GTL as I thought earlier there might have way in GTL to do it which I could not able to find out. I did this as following way based on your suggestion,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA usedata;&lt;/P&gt;&lt;P&gt;INPUT slicenm $ 1-8 val;&lt;/P&gt;&lt;P&gt;DATALINES;&lt;/P&gt;&lt;P&gt;Slice A&amp;nbsp; 4.5&lt;/P&gt;&lt;P&gt;Slice B&amp;nbsp; 5.8&lt;/P&gt;&lt;P&gt;Slice C&amp;nbsp; 7.2&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOPTIONS DEVICE=png;&lt;/P&gt;&lt;P&gt;PROC GCHART DATA=usedata; &lt;/P&gt;&lt;P&gt; PIE slicenm / TYPE=SUM SUMVAR=val &lt;/P&gt;&lt;P&gt; EXPLODE="Slice A" ANGLE=0 ASCENDING NOHEADING&amp;nbsp; &lt;/P&gt;&lt;P&gt; VALUE=inside SLICE=outside;&amp;nbsp; &lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 16:52:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-explode-slice-on-pie-chart-using-using-GTL/m-p/213891#M7951</guid>
      <dc:creator>zahirraihan</dc:creator>
      <dc:date>2015-05-13T16:52:07Z</dc:date>
    </item>
  </channel>
</rss>

