<?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 Displaying Salary Value end of the bar in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73807#M7323</link>
    <description>Hi All.,&lt;BR /&gt;
&lt;BR /&gt;
I Have data set called emp, fields are emp name, salar;&lt;BR /&gt;
i want to display the report&lt;BR /&gt;
&lt;BR /&gt;
bottom of the bar name and top of the bar is salary.,&lt;BR /&gt;
&lt;BR /&gt;
example&lt;BR /&gt;
&lt;BR /&gt;
        Y&lt;BR /&gt;
         |&lt;BR /&gt;
venkat|------------------------------------------------- 5000&lt;BR /&gt;
         |&lt;BR /&gt;
         |&lt;BR /&gt;
         |---------------------------------------------------------------------------------X&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
here venkat is the name and 5000 is salary, similar way i have 500 records...&lt;BR /&gt;
have to display all the records in a graph.....&lt;BR /&gt;
may be it is easy but am un able to do it....pls&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot...</description>
    <pubDate>Thu, 12 Feb 2009 13:34:43 GMT</pubDate>
    <dc:creator>venkatesh</dc:creator>
    <dc:date>2009-02-12T13:34:43Z</dc:date>
    <item>
      <title>Displaying Salary Value end of the bar</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73807#M7323</link>
      <description>Hi All.,&lt;BR /&gt;
&lt;BR /&gt;
I Have data set called emp, fields are emp name, salar;&lt;BR /&gt;
i want to display the report&lt;BR /&gt;
&lt;BR /&gt;
bottom of the bar name and top of the bar is salary.,&lt;BR /&gt;
&lt;BR /&gt;
example&lt;BR /&gt;
&lt;BR /&gt;
        Y&lt;BR /&gt;
         |&lt;BR /&gt;
venkat|------------------------------------------------- 5000&lt;BR /&gt;
         |&lt;BR /&gt;
         |&lt;BR /&gt;
         |---------------------------------------------------------------------------------X&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
here venkat is the name and 5000 is salary, similar way i have 500 records...&lt;BR /&gt;
have to display all the records in a graph.....&lt;BR /&gt;
may be it is easy but am un able to do it....pls&lt;BR /&gt;
&lt;BR /&gt;
Thanks a lot...</description>
      <pubDate>Thu, 12 Feb 2009 13:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73807#M7323</guid>
      <dc:creator>venkatesh</dc:creator>
      <dc:date>2009-02-12T13:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Salary Value end of the bar</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73808#M7324</link>
      <description>Doing what you describe takes some sophisticated programming using the ANNOTATE facility in SAS.  It also makes for a distorted visual image (see Cleveland's graphics book).&lt;BR /&gt;
&lt;BR /&gt;
An alternative that is much easier and not distorted is to concatenate the salary to the name, like "venkat, 5000", and then do a horizontal bar chart with the DISCRETE option (I'm not sure that it will display 500 bars).</description>
      <pubDate>Thu, 12 Feb 2009 14:14:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73808#M7324</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2009-02-12T14:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Salary Value end of the bar</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73809#M7325</link>
      <description>Pls Provide a Small exapmle....&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Fri, 13 Feb 2009 06:42:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73809#M7325</guid>
      <dc:creator>venkatesh</dc:creator>
      <dc:date>2009-02-13T06:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying Salary Value end of the bar</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73810#M7326</link>
      <description>Agreed with Doc: it takes some work to get the person's name inside the bar as you describe. You could use your Emp Name in Columns to chart role and the Salary in the Sum of role -- that would get you the person's name not inside the bar but to the left on the axis. Getting the data values is under Advanced in the Bar Chart task: check show statistics next to bar and check additional statistics next to bar: sum.&lt;BR /&gt;
&lt;BR /&gt;
I tried this with a data set that had 424 rows -- it required tweaking the code with a "levels=all" option on the HBAR3D statment, and honestly the results looked awful. All the bars were really packed in making it impossible to see any detail. Once you get to the bar chart, you could contact SAS Tech Support (http://support.sas.com/techsup/contact/) to see about make the charting area bigger, or, probably a better idea would be to break things up by some other variable like department into smaller graphs. If you had a Department value, that could go in the Group charts by role in the Bar Chart task.</description>
      <pubDate>Fri, 13 Feb 2009 14:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Displaying-Salary-Value-end-of-the-bar/m-p/73810#M7326</guid>
      <dc:creator>RichardH_sas</dc:creator>
      <dc:date>2009-02-13T14:24:53Z</dc:date>
    </item>
  </channel>
</rss>

