<?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: ODS Graphics: GTL, BARCHART, and BARLABEL in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28234#M4379</link>
    <description>Hi:&lt;BR /&gt;
  The documentation implies that BARLABEL=TRUE should work:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/61949/HTML/default/barchart_sect4.htm#grstatgraph_barchart_barlabel" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatgraph/61949/HTML/default/barchart_sect4.htm#grstatgraph_barchart_barlabel&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  If you find that it doesn't work, you might wish to work with SAS Tech Support to find an answer.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Wed, 06 May 2009 20:05:12 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-05-06T20:05:12Z</dc:date>
    <item>
      <title>ODS Graphics: GTL, BARCHART, and BARLABEL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28231#M4376</link>
      <description>How can I display the bar statistic value at the end of the bar?&lt;BR /&gt;
&lt;BR /&gt;
I've tried the BARCHART statement's BARLABEL option, but it generates an error when running PROC TEMPLATE.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Randy&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
define statgraph b_test;&lt;BR /&gt;
begingraph / border=false ;&lt;BR /&gt;
layout overlay / xaxisopts=(display=none) yaxisopts=(display=none) WALLDISPLAY=NONE ;&lt;BR /&gt;
barchart x=value / name="legend" orient=vertical display=standard barlabel=true barwidth=1&lt;BR /&gt;
fillattrs=(color=RED) OUTLINEATTRS=(color=black);&lt;BR /&gt;
endlayout;&lt;BR /&gt;
endgraph;&lt;BR /&gt;
end;&lt;BR /&gt;
run;</description>
      <pubDate>Wed, 06 May 2009 15:34:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28231#M4376</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-06T15:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics: GTL, BARCHART, and BARLABEL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28232#M4377</link>
      <description>Care to share the exact SAS error message you receive?&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Wed, 06 May 2009 15:43:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28232#M4377</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-05-06T15:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics: GTL, BARCHART, and BARLABEL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28233#M4378</link>
      <description>With BARLABEL option:&lt;BR /&gt;
&lt;BR /&gt;
proc template;&lt;BR /&gt;
387  define statgraph b_test;&lt;BR /&gt;
388  begingraph / border=false ;&lt;BR /&gt;
389  layout overlay / xaxisopts=(display=none) yaxisopts=(display=none) WALLDISPLAY=NONE ;&lt;BR /&gt;
390  barchart x=value / name="legend"  orient=vertical display=standard barlabel=true barwidth=1&lt;BR /&gt;
                                                                        --------&lt;BR /&gt;
                                                                        22&lt;BR /&gt;
                                                                        76&lt;BR /&gt;
ERROR 22-322: Syntax error, expecting one of the following: ;, BARWIDTH, CONNECTATTRS,&lt;BR /&gt;
              DATASELECTABLE, DATATRANSPARENCY, DISPLAY, FILLATTRS, GROUP, GROUPORDER, INDEX,&lt;BR /&gt;
              LEGENDLABEL, NAME, ORIENT, OUTLINEATTRS, PRIMARY, STAT, TIP, TIPFORMAT, TIPLABEL,&lt;BR /&gt;
              URL, XAXIS, YAXIS.&lt;BR /&gt;
ERROR 76-322: Syntax error, statement will be ignored.&lt;BR /&gt;
391           fillattrs=(color=RED) OUTLINEATTRS=(color=black);&lt;BR /&gt;
392  endlayout;&lt;BR /&gt;
393  endgraph;&lt;BR /&gt;
394  end;&lt;BR /&gt;
WARNING: Object will not be saved.&lt;BR /&gt;
395  run;&lt;BR /&gt;
NOTE: PROCEDURE TEMPLATE used (Total process time):&lt;BR /&gt;
      real time           0.07 seconds&lt;BR /&gt;
      cpu time            0.03 seconds&lt;BR /&gt;
&lt;BR /&gt;
Without BARLABEL option:&lt;BR /&gt;
&lt;BR /&gt;
 proc template;&lt;BR /&gt;
397  define statgraph b_test;&lt;BR /&gt;
398  begingraph / border=false ;&lt;BR /&gt;
399  layout overlay / xaxisopts=(display=none) yaxisopts=(display=none) WALLDISPLAY=NONE ;&lt;BR /&gt;
400  barchart x=value / name="legend"  orient=vertical display=standard barwidth=1&lt;BR /&gt;
401           fillattrs=(color=RED) OUTLINEATTRS=(color=black);&lt;BR /&gt;
402  endlayout;&lt;BR /&gt;
403  endgraph;&lt;BR /&gt;
404  end;&lt;BR /&gt;
NOTE: STATGRAPH 'B_test' has been saved to: SASUSER.TEMPLAT&lt;BR /&gt;
405  run;&lt;BR /&gt;
NOTE: PROCEDURE TEMPLATE used (Total process time):&lt;BR /&gt;
      real time           0.18 seconds&lt;BR /&gt;
      cpu time            0.00 seconds</description>
      <pubDate>Wed, 06 May 2009 16:11:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28233#M4378</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-05-06T16:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Graphics: GTL, BARCHART, and BARLABEL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28234#M4379</link>
      <description>Hi:&lt;BR /&gt;
  The documentation implies that BARLABEL=TRUE should work:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/61949/HTML/default/barchart_sect4.htm#grstatgraph_barchart_barlabel" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/grstatgraph/61949/HTML/default/barchart_sect4.htm#grstatgraph_barchart_barlabel&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
  If you find that it doesn't work, you might wish to work with SAS Tech Support to find an answer.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Wed, 06 May 2009 20:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Graphics-GTL-BARCHART-and-BARLABEL/m-p/28234#M4379</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-05-06T20:05:12Z</dc:date>
    </item>
  </channel>
</rss>

