<?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 Change the color of arrow on pie chart (proc chart) in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-color-of-arrow-on-pie-chart-proc-chart/m-p/500450#M17062</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1/ Is there any option to change the color of arrows on pie chart?&lt;/P&gt;&lt;P&gt;2/ Why 'arrows' are automatically preferred to 'inside' when using clockwise? Is there a way to keep values inside and still use clockwise?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data chk;
   chkcat=1; chkno=11; cnt=10; output;
   chkcat=1; chkno=12; cnt=30; output;
   chkcat=2; chkno=21; cnt=12; output;
   chkcat=2; chkno=22; cnt=5;  output;
   chkcat=2; chkno=23; cnt=17; output;
   chkcat=3; chkno=31; cnt=6;  output;
   chkcat=4; chkno=41; cnt=8;  output;
   chkcat=4; chkno=42; cnt=12; output;
run;



proc gchart data=chk;
    pie chkcat / clockwise
                 sumvar=cnt

                 slice=none 
                 percent=none 
	         value=none 

		 detail=chkno
		 detail_slice=none 
		 detail_percent=none 
		 detail_value=best 

		 discrete;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Oct 2018 15:41:39 GMT</pubDate>
    <dc:creator>xxformat_com</dc:creator>
    <dc:date>2018-10-01T15:41:39Z</dc:date>
    <item>
      <title>Change the color of arrow on pie chart (proc chart)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-color-of-arrow-on-pie-chart-proc-chart/m-p/500450#M17062</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;1/ Is there any option to change the color of arrows on pie chart?&lt;/P&gt;&lt;P&gt;2/ Why 'arrows' are automatically preferred to 'inside' when using clockwise? Is there a way to keep values inside and still use clockwise?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data chk;
   chkcat=1; chkno=11; cnt=10; output;
   chkcat=1; chkno=12; cnt=30; output;
   chkcat=2; chkno=21; cnt=12; output;
   chkcat=2; chkno=22; cnt=5;  output;
   chkcat=2; chkno=23; cnt=17; output;
   chkcat=3; chkno=31; cnt=6;  output;
   chkcat=4; chkno=41; cnt=8;  output;
   chkcat=4; chkno=42; cnt=12; output;
run;



proc gchart data=chk;
    pie chkcat / clockwise
                 sumvar=cnt

                 slice=none 
                 percent=none 
	         value=none 

		 detail=chkno
		 detail_slice=none 
		 detail_percent=none 
		 detail_value=best 

		 discrete;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Oct 2018 15:41:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Change-the-color-of-arrow-on-pie-chart-proc-chart/m-p/500450#M17062</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2018-10-01T15:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: Change the color of arrow on pie chart (proc chart)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-color-of-arrow-on-pie-chart-proc-chart/m-p/507007#M17265</link>
      <description>&lt;P&gt;1/ Yes, the option is plabel&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;= &lt;/EM&gt;( color = ... ). You can see it in action in&amp;nbsp;&lt;SPAN&gt;Sample 40176 here:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.sas.com/sassamples/graphgallery/PROC_GCHART_Graph_Types_Charts_Pie.html" target="_self"&gt;SAS Pie Chart Gallery with Code Samples&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2/ You probably want something like&amp;nbsp;Sample 25519. For that, you would need to define a legend.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Oct 2018 20:27:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Change-the-color-of-arrow-on-pie-chart-proc-chart/m-p/507007#M17265</guid>
      <dc:creator>pink_poodle</dc:creator>
      <dc:date>2018-10-23T20:27:34Z</dc:date>
    </item>
  </channel>
</rss>

