<?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: Add in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143206#M5427</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code used to create the graph as the procedure, the output destination (HTML, RTF, PDF or other) AND which SAS version you are running has bearing on solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jan 2015 22:13:53 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2015-01-28T22:13:53Z</dc:date>
    <item>
      <title>Add space between bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143205#M5426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In below graph you can see number labels are so congested. Also if number of digits gets more than 4 then it doesn't display at all.&lt;/P&gt;&lt;P&gt;I was wondering if there is a way to fix this. Can we increase space between bars?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="8905" alt="" class="jiveImage" src="https://communities.sas.com/legacyfs/online/8905_pastedImage_0.png" style="width: 623px; height: 516px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 21:57:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143205#M5426</guid>
      <dc:creator>Dreamer</dc:creator>
      <dc:date>2015-01-28T21:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143206#M5427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code used to create the graph as the procedure, the output destination (HTML, RTF, PDF or other) AND which SAS version you are running has bearing on solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 22:13:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143206#M5427</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-28T22:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Add</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143207#M5428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A __default_attr="260198" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I'm creating &lt;STRONG&gt;Excel output&lt;/STRONG&gt; by running following code in &lt;STRONG&gt;SAS 9.4&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options device=ACTXIMG nobyline;&lt;/P&gt;&lt;P&gt; goptions device=png rotate=landscape ;&lt;/P&gt;&lt;P&gt; ods graphics on;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods excel&lt;/P&gt;&lt;P&gt;&amp;nbsp; options(sheet_interval='none' sheet_name='Graph Output' sheet_label=' ' suppress_bylines='yes'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; orientation='landscape' embedded_titles='yes' center_horizontal='yes' &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; embedded_footnotes='yes')&lt;/P&gt;&lt;P&gt;&amp;nbsp; style=minimal ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PATTERN1 COLOR=CX1F497D;&lt;/P&gt;&lt;P&gt;Axis1 STYLE=1 WIDTH=1 MINOR=(NUMBER=1) LABEL=(f="calibri/Bold" "Group Counts" ) value=(h=8pt) ;&lt;/P&gt;&lt;P&gt;Axis2 STYLE=1 WIDTH=1 LABEL=( f="calibri/Bold" "Enrollment Date CCYYMM" )value=(h=8pt);&lt;/P&gt;&lt;P&gt;TITLE underlin=2 "#byval(region)";&lt;/P&gt;&lt;P&gt;FOOTNOTE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC GCHART DATA=REGIONGRPCNT ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BY region;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; VBAR ccyy /width=5 SUMVAR=grpcnt CLIPREF FRAME&amp;nbsp; DISCRETE TYPE=SUM space=3&lt;/P&gt;&lt;P&gt;SUM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUTLINE=GRAY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RAXIS=AXIS1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAXIS=AXIS2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LREF=1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CREF=GRAY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AUTOREF ;&lt;/P&gt;&lt;P&gt;RUN; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods excel close;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 15:59:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143207#M5428</guid>
      <dc:creator>Dreamer</dc:creator>
      <dc:date>2015-01-29T15:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Add</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143208#M5429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I can't help much as I don't have 9.4 and our IT won't let us generate activex anything. If fitting on a printed page isn't quite an issue then increasing the setting of HSIZE in the goptions statement might help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 18:32:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/143208#M5429</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-29T18:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/226577#M8205</link>
      <description>&lt;P&gt;You would need to make the graph itself wider, in order for the bars to be wider.&lt;/P&gt;&lt;P&gt;I'm not sure about activex, but with device=png, you can use 'goptions xpixels=1000;'&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once the page is wider, the gchart bars typically auto-size to fill up a 'comfortable' amount of the space, but you can further refine/control the bar width using the width= option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's a small example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;goptions device=png xpixels=1000;&lt;/P&gt;&lt;P&gt;proc gchart data=sashelp.electric;&lt;BR /&gt;vbar year / discrete type=sum sumvar=revenue outside=sum width=8;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/262i889E3020753EA8E6/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="foo.png" title="foo.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 15:09:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-space-between-bars/m-p/226577#M8205</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2015-09-21T15:09:39Z</dc:date>
    </item>
  </channel>
</rss>

