<?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: format sumvar values in proc gchart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428596#M14817</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99946"&gt;@csetzkorn&lt;/a&gt; wrote:&lt;BR /&gt;Thanks I came across this. Is this really the only way )-:&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you going to do this frequently with many different data sets? Also which version of SAS are you using as graphics options change with each release for the statistical graphics pro&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so then you may want to consider 1) changing from Gchart to Sgplot and 2) modifying an ODS style template to display data labels that way or&amp;nbsp;Use Sgplot with a SUMMARIZED data set so you know the values and use Sgplot with a VBARPARM&amp;nbsp;and a TEXT plot to overlay text at locations which allows rotation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The annotate sets aren't that difficult to make as there are a number of macros, but any time you want to control more elements of output you have to do more work somewhere along the line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jan 2018 20:33:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-01-17T20:33:17Z</dc:date>
    <item>
      <title>format sumvar values in proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428411#M14793</link>
      <description>&lt;P&gt;I am using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;pattern1 color=green;
axis1 label=(a=0 f= "Arial/bold" "Bla" ) color=black minor =(n=2) value=(angle=0);
axis2 label=(f="Arial/bold" "Bla") color=black value=(angle=90);

proc gchart data=Bla(where=(Bla = "&amp;amp;Bla." and Bla='YES'));
	title1 f="Arial/bold" c=black &amp;amp;Title.;
	format Bla NLMNLGBP32.0;
	vbar3d TBla / sumvar=Bla
		width=15
		outside=sum
		descending
		raxis=axis1
		maxis=axis2 
		legend=
		;	
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way of applying an angle (e.g. 45 degrees) to the values of sumvar and even make these values bold? Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:22:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428411#M14793</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-01-17T15:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: format sumvar values in proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428434#M14797</link>
      <description>&lt;P&gt;When you start wanting to control appearance of sumvar text properties, font, size angles rotation or such then you move into ANNOTATE data sets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check to see if your online help has an example named "Labeling Subgroups in a vertical Bar Chart" to get started.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 15:43:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428434#M14797</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-17T15:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: format sumvar values in proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428447#M14802</link>
      <description>Thanks I came across this. Is this really the only way )-:</description>
      <pubDate>Wed, 17 Jan 2018 15:57:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428447#M14802</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-01-17T15:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: format sumvar values in proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428596#M14817</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/99946"&gt;@csetzkorn&lt;/a&gt; wrote:&lt;BR /&gt;Thanks I came across this. Is this really the only way )-:&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Are you going to do this frequently with many different data sets? Also which version of SAS are you using as graphics options change with each release for the statistical graphics pro&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so then you may want to consider 1) changing from Gchart to Sgplot and 2) modifying an ODS style template to display data labels that way or&amp;nbsp;Use Sgplot with a SUMMARIZED data set so you know the values and use Sgplot with a VBARPARM&amp;nbsp;and a TEXT plot to overlay text at locations which allows rotation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The annotate sets aren't that difficult to make as there are a number of macros, but any time you want to control more elements of output you have to do more work somewhere along the line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 20:33:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/format-sumvar-values-in-proc-gchart/m-p/428596#M14817</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-17T20:33:17Z</dc:date>
    </item>
  </channel>
</rss>

