<?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 yaxis tick labels in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73122#M2636</link>
    <description>I am having a hard time getting my tick mark labels to be 90 degrees, size 2.5pct, and appear exactly at the tick mark itself. Right now with the code below, SAS pushes the label to the middle of two tick marks, like there is an invisible buffer or spacer there. I don't want any space, I want the tick mark label (a number) to be exactly on the tick mark.&lt;BR /&gt;
&lt;BR /&gt;
axis1 value=(a=90 h=3pct) order=(0 to 800 by 200)  minor=none label=(a=90  color=black "Mean (ng/mL)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
I get this error along with the bizarre looking axis I describe: &lt;BR /&gt;
"WARNING: The left vertical axis labeled MEAN could not be fit as specified. The axis values will overwrite."&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Roki</description>
    <pubDate>Thu, 24 Sep 2009 14:36:33 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2009-09-24T14:36:33Z</dc:date>
    <item>
      <title>yaxis tick labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73122#M2636</link>
      <description>I am having a hard time getting my tick mark labels to be 90 degrees, size 2.5pct, and appear exactly at the tick mark itself. Right now with the code below, SAS pushes the label to the middle of two tick marks, like there is an invisible buffer or spacer there. I don't want any space, I want the tick mark label (a number) to be exactly on the tick mark.&lt;BR /&gt;
&lt;BR /&gt;
axis1 value=(a=90 h=3pct) order=(0 to 800 by 200)  minor=none label=(a=90  color=black "Mean (ng/mL)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
I get this error along with the bizarre looking axis I describe: &lt;BR /&gt;
"WARNING: The left vertical axis labeled MEAN could not be fit as specified. The axis values will overwrite."&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Roki</description>
      <pubDate>Thu, 24 Sep 2009 14:36:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73122#M2636</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-24T14:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: yaxis tick labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73123#M2637</link>
      <description>I tried this and seem to work both at 9.13 and 9.2. There may be other options in your program that might be causing the problem, can you please provide an example.</description>
      <pubDate>Thu, 24 Sep 2009 20:59:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73123#M2637</guid>
      <dc:creator>HPatel_SAS</dc:creator>
      <dc:date>2009-09-24T20:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: yaxis tick labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73124#M2638</link>
      <description>what procedure and device is this used with? More code needed imho.</description>
      <pubDate>Thu, 24 Sep 2009 22:39:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73124#M2638</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2009-09-24T22:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: yaxis tick labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73125#M2639</link>
      <description>yes, this is my full code:&lt;BR /&gt;
&lt;BR /&gt;
goptions        reset=ALL &lt;BR /&gt;
                gunit=pct &lt;BR /&gt;
                colors=(black) &lt;BR /&gt;
                ftext=hwcgm001 &lt;BR /&gt;
                ftitle=hwcgm009 &lt;BR /&gt;
                htext=3 &lt;BR /&gt;
                noborder &lt;BR /&gt;
                maxcolors=255 &lt;BR /&gt;
                device=CGMOFML&lt;BR /&gt;
                hsize=10 in vsize=8 ; &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
axis1 value=(a=90 h=3pct) order=(0 to 800 by 200)  minor=none label=(a=90  color=black "Mean, (ng/mL)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
axis2 order=(0 to 80 by 20) minor=none label=(color=black "Time (hr)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=plotdata;&lt;BR /&gt;
                plot mean*time/&lt;BR /&gt;
	vaxis=axis1&lt;BR /&gt;
	haxis=axis2;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
In fact, when I don't do the 90 degree rotation of the tick mark labels, there is a distance from the tick mark label to the axis label. Some invisible buffer is being created i think. &lt;BR /&gt;
Thanks</description>
      <pubDate>Fri, 25 Sep 2009 12:36:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73125#M2639</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-09-25T12:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: yaxis tick labels</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73126#M2640</link>
      <description>Values (not "labels") are exactly centered on the tick marks with:&lt;BR /&gt;
&lt;BR /&gt;
goptions reset=ALL &lt;BR /&gt;
gunit=pct &lt;BR /&gt;
colors=(black) &lt;BR /&gt;
ftext=hwcgm001 &lt;BR /&gt;
ftitle=hwcgm009 &lt;BR /&gt;
htext=3 &lt;BR /&gt;
noborder &lt;BR /&gt;
maxcolors=255 &lt;BR /&gt;
device=CGMOFML&lt;BR /&gt;
hsize=10 in vsize=8 ; &lt;BR /&gt;
&lt;BR /&gt;
axis1 value=(a=90 h=3pct) /*order=(0 to 800 by 200)*/ minor=none label=(a=90 color=black "Mean, (ng/mL)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
axis2 /*order=(0 to 80 by 20)*/ minor=none label=(color=black "Time (hr)") offset=(1);&lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=sashelp.air;&lt;BR /&gt;
plot air*date / vaxis=axis1 haxis=axis2;&lt;BR /&gt;
run;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
If you add &lt;B&gt;format air 8.0;&lt;/B&gt;, a shift can be seen. I reckon that may be the reason you see that "buffer": you request a long format, and sas provides it.</description>
      <pubDate>Sun, 27 Sep 2009 22:13:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/yaxis-tick-labels/m-p/73126#M2640</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2009-09-27T22:13:02Z</dc:date>
    </item>
  </channel>
</rss>

