<?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: Displaying all Labels for X-Axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637887#M19725</link>
    <description>&lt;P&gt;I have not tried reducing the font size. I will give it a try and see if it works.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Apr 2020 16:08:25 GMT</pubDate>
    <dc:creator>Pritish</dc:creator>
    <dc:date>2020-04-06T16:08:25Z</dc:date>
    <item>
      <title>Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637133#M19710</link>
      <description>&lt;P&gt;Hi All - I am trying to plot year-quarter values on the x axis using sgplot and have around 50 labels. When I use SGPlot, it only shows every alternative year quarter instead of all the 50 labels. Is there any way, I can show all possible value on the x-axis? I did explore 'values' options, but it might not a good option as the year-quarter information will vary based on my data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any thoughts / guidance will be appreciate.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 02:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637133#M19710</guid>
      <dc:creator>Pritish</dc:creator>
      <dc:date>2020-04-03T02:28:53Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637141#M19712</link>
      <description>&lt;P&gt;What do you get when you specify INTERVAL=QUARTER on your XAXIS statement?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 02:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637141#M19712</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2020-04-03T02:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637150#M19714</link>
      <description>I tried Interval = quarter option, however it does not show all the possible values. It skips every 2/3 quarters.</description>
      <pubDate>Fri, 03 Apr 2020 03:07:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637150#M19714</guid>
      <dc:creator>Pritish</dc:creator>
      <dc:date>2020-04-03T03:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637280#M19716</link>
      <description>&lt;P&gt;Please show the entire code you are using.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also it may help to tell us the format currently assigned to the x-axis variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you getting any notes in the log about fitting values to your axis space?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 14:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637280#M19716</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-04-03T14:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637848#M19723</link>
      <description>Below is the code which I am using: &lt;BR /&gt;/* x axis column date_mmddyyyy has the format mmddyy10. : for ex: 03/31/2009 */ &lt;BR /&gt;&lt;BR /&gt;proc sgplot data=graph; &lt;BR /&gt;  XAXIS Label="YYYYQ" valuesformat=yyq6.   &lt;BR /&gt;   interval=quarter valuesrotate=vertical fitpolicy=rotate;&lt;BR /&gt;band x=date_mmddyyyy lower=0 upper= _freq_ / y2axis name="v3";&lt;BR /&gt;series x=date_mmddyyyy y=mean;&lt;BR /&gt;series x=date_mmddyyyy y=median;&lt;BR /&gt;run;&lt;BR /&gt;Below is the note, I get when I execute the program. &lt;BR /&gt;NOTE: TICKVALUEFITPOLICY=Rotate is ignored when SPLITTICKVALUE=TRUE. The default THIN policy is used.&lt;BR /&gt;NOTE: Some of the tick values have been thinned.&lt;BR /&gt;NOTE: TICKVALUEFITPOLICY=Rotate is ignored when SPLITTICKVALUE=TRUE. The default THIN policy is used.&lt;BR /&gt;NOTE: Some of the tick values have been thinned.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Apr 2020 13:59:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637848#M19723</guid>
      <dc:creator>Pritish</dc:creator>
      <dc:date>2020-04-06T13:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637868#M19724</link>
      <description>&lt;P&gt;Smaller font?&amp;nbsp; Larger plot? Rotate the axis labels?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 15:23:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637868#M19724</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-06T15:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637887#M19725</link>
      <description>&lt;P&gt;I have not tried reducing the font size. I will give it a try and see if it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 16:08:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637887#M19725</guid>
      <dc:creator>Pritish</dc:creator>
      <dc:date>2020-04-06T16:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637892#M19726</link>
      <description>&lt;P&gt;For date axes, PROC SGPLOT will perform special processing to handle the fact that months are different lengths. The NOTE is telling you that the special processing is occurring. For example, see the results of each of these calls:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.stocks;
series x=date y=open / group=stock;
run;

proc sgplot data=sashelp.stocks;
where date &amp;lt; '01jan1990'd;
series x=date y=open / group=stock;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2020 17:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/637892#M19726</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-04-06T17:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying all Labels for X-Axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/783305#M22361</link>
      <description>&lt;P&gt;Try the following&lt;/P&gt;
&lt;P&gt;xaxis values=(a to b by 1);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;a means the start value&lt;/P&gt;
&lt;P&gt;b means the end value&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 00:51:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Displaying-all-Labels-for-X-Axis/m-p/783305#M22361</guid>
      <dc:creator>Barkat</dc:creator>
      <dc:date>2021-12-01T00:51:55Z</dc:date>
    </item>
  </channel>
</rss>

