<?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 Anno text question in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Anno-text-question/m-p/69063#M2413</link>
    <description>All text is being outputted correctly. &lt;BR /&gt;
My only issue is that instead of "Greatest time between incidences (2009): 5" (where y=6) I only see "Greatest t" (this is also the case for text where y=4).&lt;BR /&gt;
How can I fix this?&lt;BR /&gt;
Thank you.&lt;BR /&gt;
&lt;BR /&gt;
data month_anno;&lt;BR /&gt;
	length text $40;&lt;BR /&gt;
	function='label';&lt;BR /&gt;
	position='5';&lt;BR /&gt;
	xsys='2'; ysys='2'; hsys='3'; when='A';&lt;BR /&gt;
	size=3;&lt;BR /&gt;
	y=1;&lt;BR /&gt;
	spacing=4.4;&lt;BR /&gt;
	x=3.5; text='JAN'; output;&lt;BR /&gt;
	x=x+spacing; text='FEB'; output;&lt;BR /&gt;
	x=x+spacing; text='MAR'; output;&lt;BR /&gt;
	x=x+spacing; text='APR'; output;&lt;BR /&gt;
	x=x+spacing; text='MAY'; output;&lt;BR /&gt;
	x=x+spacing; text='JUN'; output;&lt;BR /&gt;
	x=x+spacing; text='JUL'; output;&lt;BR /&gt;
	x=x+spacing; text='AUG'; output;&lt;BR /&gt;
	x=x+spacing; text='SEP'; output;&lt;BR /&gt;
	x=x+spacing; text='OCT'; output;&lt;BR /&gt;
	x=x+spacing; text='NOV'; output;&lt;BR /&gt;
	x=x+spacing; text='DEC'; output;&lt;BR /&gt;
	color="green";&lt;BR /&gt;
	function='label';&lt;BR /&gt;
	y=6;&lt;BR /&gt;
	x=3.5; text="Greatest time between incidences (2009): 5";output;&lt;BR /&gt;
	y=4;&lt;BR /&gt;
	x=3.5; text="Greatest time between incidences (YTD): 3";output;&lt;BR /&gt;
run;</description>
    <pubDate>Wed, 17 Mar 2010 20:57:46 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2010-03-17T20:57:46Z</dc:date>
    <item>
      <title>Anno text question</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anno-text-question/m-p/69063#M2413</link>
      <description>All text is being outputted correctly. &lt;BR /&gt;
My only issue is that instead of "Greatest time between incidences (2009): 5" (where y=6) I only see "Greatest t" (this is also the case for text where y=4).&lt;BR /&gt;
How can I fix this?&lt;BR /&gt;
Thank you.&lt;BR /&gt;
&lt;BR /&gt;
data month_anno;&lt;BR /&gt;
	length text $40;&lt;BR /&gt;
	function='label';&lt;BR /&gt;
	position='5';&lt;BR /&gt;
	xsys='2'; ysys='2'; hsys='3'; when='A';&lt;BR /&gt;
	size=3;&lt;BR /&gt;
	y=1;&lt;BR /&gt;
	spacing=4.4;&lt;BR /&gt;
	x=3.5; text='JAN'; output;&lt;BR /&gt;
	x=x+spacing; text='FEB'; output;&lt;BR /&gt;
	x=x+spacing; text='MAR'; output;&lt;BR /&gt;
	x=x+spacing; text='APR'; output;&lt;BR /&gt;
	x=x+spacing; text='MAY'; output;&lt;BR /&gt;
	x=x+spacing; text='JUN'; output;&lt;BR /&gt;
	x=x+spacing; text='JUL'; output;&lt;BR /&gt;
	x=x+spacing; text='AUG'; output;&lt;BR /&gt;
	x=x+spacing; text='SEP'; output;&lt;BR /&gt;
	x=x+spacing; text='OCT'; output;&lt;BR /&gt;
	x=x+spacing; text='NOV'; output;&lt;BR /&gt;
	x=x+spacing; text='DEC'; output;&lt;BR /&gt;
	color="green";&lt;BR /&gt;
	function='label';&lt;BR /&gt;
	y=6;&lt;BR /&gt;
	x=3.5; text="Greatest time between incidences (2009): 5";output;&lt;BR /&gt;
	y=4;&lt;BR /&gt;
	x=3.5; text="Greatest time between incidences (YTD): 3";output;&lt;BR /&gt;
run;</description>
      <pubDate>Wed, 17 Mar 2010 20:57:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anno-text-question/m-p/69063#M2413</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-03-17T20:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Anno text question</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Anno-text-question/m-p/69064#M2414</link>
      <description>Could you specify the procedure you use to draw data ?&lt;BR /&gt;
I tried your code with small modifications ( length text $64;...;position='6';) and all seems to O.K. &lt;BR /&gt;
&lt;BR /&gt;
data month_anno;&lt;BR /&gt;
length text $64;&lt;BR /&gt;
function='label';&lt;BR /&gt;
position='5';&lt;BR /&gt;
xsys='2'; ysys='2'; hsys='3'; when='A';&lt;BR /&gt;
size=3;&lt;BR /&gt;
y=1;&lt;BR /&gt;
spacing=4.4;&lt;BR /&gt;
x=3.5; text='JAN'; output;&lt;BR /&gt;
x=x+spacing; text='FEB'; output;&lt;BR /&gt;
x=x+spacing; text='MAR'; output;&lt;BR /&gt;
x=x+spacing; text='APR'; output;&lt;BR /&gt;
x=x+spacing; text='MAY'; output;&lt;BR /&gt;
x=x+spacing; text='JUN'; output;&lt;BR /&gt;
x=x+spacing; text='JUL'; output;&lt;BR /&gt;
x=x+spacing; text='AUG'; output;&lt;BR /&gt;
x=x+spacing; text='SEP'; output;&lt;BR /&gt;
x=x+spacing; text='OCT'; output;&lt;BR /&gt;
x=x+spacing; text='NOV'; output;&lt;BR /&gt;
x=x+spacing; text='DEC'; output;&lt;BR /&gt;
color="green";&lt;BR /&gt;
function='label';&lt;BR /&gt;
y=6;&lt;BR /&gt;
x=3.5; position='6';text="Greatest time between incidences (2009): 5";output;&lt;BR /&gt;
y=4;&lt;BR /&gt;
x=3.5; position='6';text="Greatest time between incidences (YTD): 3";output;&lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
proc gplot data=month_anno anno=month_anno;&lt;BR /&gt;
  plot y*x &lt;BR /&gt;
  / haxis=axis1 vaxis=axis2;&lt;BR /&gt;
  axis1 order=(0 to 60 by 5);&lt;BR /&gt;
  axis2 order=(1 to 7 by 1);&lt;BR /&gt;
run;quit;</description>
      <pubDate>Thu, 18 Mar 2010 06:49:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Anno-text-question/m-p/69064#M2414</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-03-18T06:49:19Z</dc:date>
    </item>
  </channel>
</rss>

