<?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 No obs on a vbar chart in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/No-obs-on-a-vbar-chart/m-p/28685#M4435</link>
    <description>I'm creating a vbar chart and one of the subgroups does not have any observations and so it's not displayed on the chart.  &lt;BR /&gt;
&lt;BR /&gt;
For example, January - April should be displayed but March does not have any data therefore the graph only shows Jan, Feb, and April.  I'd like the label of March to remain and the space on the graph to be empty.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone know how I can accomplish this?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Sonya</description>
    <pubDate>Tue, 01 Jul 2008 12:37:54 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-07-01T12:37:54Z</dc:date>
    <item>
      <title>No obs on a vbar chart</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/No-obs-on-a-vbar-chart/m-p/28685#M4435</link>
      <description>I'm creating a vbar chart and one of the subgroups does not have any observations and so it's not displayed on the chart.  &lt;BR /&gt;
&lt;BR /&gt;
For example, January - April should be displayed but March does not have any data therefore the graph only shows Jan, Feb, and April.  I'd like the label of March to remain and the space on the graph to be empty.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone know how I can accomplish this?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Sonya</description>
      <pubDate>Tue, 01 Jul 2008 12:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/No-obs-on-a-vbar-chart/m-p/28685#M4435</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-07-01T12:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: No obs on a vbar chart</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/No-obs-on-a-vbar-chart/m-p/28686#M4436</link>
      <description>Hi:&lt;BR /&gt;
The AXIS statement should allow you to specify what you want to see. The axis statement can do a lot more, but it will also put your empty space on the graph.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
data salesdata;&lt;BR /&gt;
   length part $ 9  month $3;&lt;BR /&gt;
   input part month $ sales;&lt;BR /&gt;
return;&lt;BR /&gt;
datalines;&lt;BR /&gt;
Widget    Jan 7043.97&lt;BR /&gt;
Widget    Jan 8225.26&lt;BR /&gt;
Widget    Jan 5543.97&lt;BR /&gt;
Sprocket  Feb 2773.73&lt;BR /&gt;
Sprocket  Feb 3226.12&lt;BR /&gt;
Sprocket  Feb 4722.24&lt;BR /&gt;
Gadget    Apr 1775.74&lt;BR /&gt;
Gadget    Apr 3424.19&lt;BR /&gt;
Gadget    Apr 6914.25&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
                &lt;BR /&gt;
goptions reset=all border ;&lt;BR /&gt;
          &lt;BR /&gt;
  title1 'Total Sales';&lt;BR /&gt;
  axis1 order=('Jan' 'Feb' 'Mar' 'Apr');&lt;BR /&gt;
  axis2 order=(0 to 25000 by 5000);&lt;BR /&gt;
            &lt;BR /&gt;
  proc gchart data=salesdata;&lt;BR /&gt;
   vbar3d month / sumvar=sales&lt;BR /&gt;
                  maxis=axis1&lt;BR /&gt;
                  raxis=axis2;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 01 Jul 2008 19:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/No-obs-on-a-vbar-chart/m-p/28686#M4436</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-07-01T19:46:59Z</dc:date>
    </item>
  </channel>
</rss>

