<?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: Is there is any way to get rid of Final bar in Waterfall chart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/300301#M10600</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a look at the doc for the WATERFALL statement, data values can usally be displayed with the DATALABEL option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
    <pubDate>Fri, 23 Sep 2016 08:17:58 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2016-09-23T08:17:58Z</dc:date>
    <item>
      <title>Is there is any way to get rid of Final bar in Waterfall chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/299890#M10590</link>
      <description>&lt;P&gt;HI Sas Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to remove the final bar from the waterfall chart. Please guide&lt;/P&gt;&lt;P&gt;Please check &amp;nbsp;the attched image.&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/12997iD1DBD2E7D1BF197B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="waterfall chart.png" title="waterfall chart.png" /&gt;</description>
      <pubDate>Wed, 21 Sep 2016 16:14:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/299890#M10590</guid>
      <dc:creator>sanjay1</dc:creator>
      <dc:date>2016-09-21T16:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is there is any way to get rid of Final bar in Waterfall chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/299951#M10593</link>
      <description>&lt;P&gt;Yes there is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will need to use GTL to do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For a start you can use your Proc SGPLOT code and add the TMPLOUT= option. This will write out the GTL code to a file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.class tmplout="c:\temp\sgplot.sas";
  waterfall category=age response=height ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then adapt the code like below. Check the doc for the &lt;A href="http://support.sas.com/documentation/cdl/en/grstatgraph/67882/HTML/default/viewer.htm#p0t8mzfhzxjzy3n1l2geygphpxnl.htm" target="_blank"&gt;WATERFALLCHART statement&lt;/A&gt; it has the DISPLAY= option.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods path
  (prepend) work.mytemplates (update)
;

proc template;
  define statgraph sgplot_waterfall;
    begingraph / collation=binary;
      layout overlay / yaxisopts=(labelFitPolicy=Split) y2axisopts=(labelFitPolicy=Split);
        WaterfallChart Category=Age Response=Height / 
          primary=true LegendLabel="Height" NAME="WATERFALL"
          display=(
          FILL 
          /*            FINALBAR displays the “final” bar */
          OUTLINE 
          CONNECT 
          )
        ;
      endlayout;
    endgraph;
  end;
run;

proc sgrender data=sashelp.class template=sgplot_waterfall;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2016 19:55:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/299951#M10593</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-09-21T19:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is there is any way to get rid of Final bar in Waterfall chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/300049#M10596</link>
      <description>&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thats working fine, can i also get the values on the top of the each bar.(and I also want to get the space between each bar is there is anyway to do this).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2016 07:58:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/300049#M10596</guid>
      <dc:creator>sanjay1</dc:creator>
      <dc:date>2016-09-22T07:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there is any way to get rid of Final bar in Waterfall chart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/300301#M10600</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a look at the doc for the WATERFALL statement, data values can usally be displayed with the DATALABEL option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 08:17:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Is-there-is-any-way-to-get-rid-of-Final-bar-in-Waterfall-chart/m-p/300301#M10600</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2016-09-23T08:17:58Z</dc:date>
    </item>
  </channel>
</rss>

