<?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 I'm having troubles with the title statement in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23354#M645</link>
    <description>Here's my code.&lt;BR /&gt;
I specified Justify and Height options, but I get a centerd title in a fix height  (I tried to change the height, but it doesn't affect the graph)&lt;BR /&gt;
What's wrong with my syntax?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance!&lt;BR /&gt;
Tal&lt;BR /&gt;
&lt;BR /&gt;
goptions reset=all;&lt;BR /&gt;
 legend1 label=('Station') value=(height=1 justify=left 'A' 'B' 'C' )shape=symbol(3,0.5)&lt;BR /&gt;
        position=(top right inside ) mode=protect down=3 across=1 frame;&lt;BR /&gt;
&lt;B&gt;title '(a)'  JUSTIFY=left HEIGHT=3 ;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
symbol1 i =join v=dot c=green h=0.1 cm;&lt;BR /&gt;
symbol2  i =join v=dot c=blue   h=0.1 cm;&lt;BR /&gt;
symbol3  i =join v=dot c=red   h=0.1 cm;&lt;BR /&gt;
axis1 order=('5jan03:00:00'dt  to '12jan03:00:00'dt  by day)&lt;BR /&gt;
      label=(f=swiss h=0.5 cm  'Date and Time') minor=(number=24);&lt;BR /&gt;
axis2 order = (0 to 60 by 10)&lt;BR /&gt;
     label=(f=swiss h=0.5 cm  a=90 'O3 [ppb]');&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc gplot gout=w data=hh.jan_03_excel;&lt;BR /&gt;
plot O3*d=stat_id /vaxis = axis2 haxis=axis1 LEGEND=LEGEND1 &lt;BR /&gt;
/*legend=legend2 */&lt;BR /&gt;
name="O3 January 2003.gif";&lt;BR /&gt;
where day in (5,6,7,8,9,10,11,12);&lt;BR /&gt;
run; quit;</description>
    <pubDate>Mon, 30 Nov 2009 20:57:48 GMT</pubDate>
    <dc:creator>tal83</dc:creator>
    <dc:date>2009-11-30T20:57:48Z</dc:date>
    <item>
      <title>I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23354#M645</link>
      <description>Here's my code.&lt;BR /&gt;
I specified Justify and Height options, but I get a centerd title in a fix height  (I tried to change the height, but it doesn't affect the graph)&lt;BR /&gt;
What's wrong with my syntax?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance!&lt;BR /&gt;
Tal&lt;BR /&gt;
&lt;BR /&gt;
goptions reset=all;&lt;BR /&gt;
 legend1 label=('Station') value=(height=1 justify=left 'A' 'B' 'C' )shape=symbol(3,0.5)&lt;BR /&gt;
        position=(top right inside ) mode=protect down=3 across=1 frame;&lt;BR /&gt;
&lt;B&gt;title '(a)'  JUSTIFY=left HEIGHT=3 ;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
symbol1 i =join v=dot c=green h=0.1 cm;&lt;BR /&gt;
symbol2  i =join v=dot c=blue   h=0.1 cm;&lt;BR /&gt;
symbol3  i =join v=dot c=red   h=0.1 cm;&lt;BR /&gt;
axis1 order=('5jan03:00:00'dt  to '12jan03:00:00'dt  by day)&lt;BR /&gt;
      label=(f=swiss h=0.5 cm  'Date and Time') minor=(number=24);&lt;BR /&gt;
axis2 order = (0 to 60 by 10)&lt;BR /&gt;
     label=(f=swiss h=0.5 cm  a=90 'O3 [ppb]');&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
proc gplot gout=w data=hh.jan_03_excel;&lt;BR /&gt;
plot O3*d=stat_id /vaxis = axis2 haxis=axis1 LEGEND=LEGEND1 &lt;BR /&gt;
/*legend=legend2 */&lt;BR /&gt;
name="O3 January 2003.gif";&lt;BR /&gt;
where day in (5,6,7,8,9,10,11,12);&lt;BR /&gt;
run; quit;</description>
      <pubDate>Mon, 30 Nov 2009 20:57:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23354#M645</guid>
      <dc:creator>tal83</dc:creator>
      <dc:date>2009-11-30T20:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23355#M646</link>
      <description>I'm not at a computer where I can try this right now, but IIRC you have to specify the title options *before* the text (ie, the options only affect the text *after* the option).&lt;BR /&gt;
&lt;BR /&gt;
Therefore you'd need a title statement like ...&lt;BR /&gt;
&lt;BR /&gt;
title JUSTIFY=left HEIGHT=3 '(a)';</description>
      <pubDate>Mon, 30 Nov 2009 21:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23355#M646</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2009-11-30T21:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23356#M647</link>
      <description>That worked.&lt;BR /&gt;
Thanks a lot (again) !&lt;BR /&gt;
Tal</description>
      <pubDate>Tue, 01 Dec 2009 13:43:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23356#M647</guid>
      <dc:creator>tal83</dc:creator>
      <dc:date>2009-12-01T13:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23357#M648</link>
      <description>Is there anywhere on the web a detailed example of syntax for goptions+gplot, so that I can know , for the next time what is the correct order within each statement and between the statements (I tried google before asking you, but found nothing that helped me).&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance,&lt;BR /&gt;
Tal</description>
      <pubDate>Tue, 01 Dec 2009 14:15:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23357#M648</guid>
      <dc:creator>tal83</dc:creator>
      <dc:date>2009-12-01T14:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23358#M649</link>
      <description>Hi:&lt;BR /&gt;
  Rather than doing a direct Google search, you might try support.sas.com's search facility (in the upper right-hand corner of the page). For example, searching on GOPTIONS in the search box, and limiting the search to Product Documentation, you can find these links:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/goptionschap.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/goptionschap.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/a000713550.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/a000713550.htm&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
Similarly, searching with the string:&lt;BR /&gt;
SAS/GRAPH TITLE and limiting the search to Product Documentation, resulted in this hit:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/titlechap.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/titlechap.htm&lt;/A&gt;&lt;BR /&gt;
where it states:&lt;BR /&gt;
"You can use as many text strings and options as you want, but place the options before the text strings they modify. See Using Multiple Options."&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/titlechap.htm#title-multioption" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/61884/HTML/default/titlechap.htm#title-multioption&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
The SAS/GRAPH documentation is excellent--voluminous--but excellent.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 01 Dec 2009 16:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23358#M649</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-12-01T16:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: I'm having troubles with the title statement</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23359#M650</link>
      <description>Hi Tal,&lt;BR /&gt;
&lt;BR /&gt;
there is a really good book: "The How-To Book for SAS/Graph Software" by Thomas Miron. And for more check "Quick Results with SAS/Graph Software" by Art Carpenter.&lt;BR /&gt;
&lt;BR /&gt;
Best wishes&lt;BR /&gt;
Eva</description>
      <pubDate>Mon, 21 Dec 2009 12:27:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/I-m-having-troubles-with-the-title-statement/m-p/23359#M650</guid>
      <dc:creator>Eva</dc:creator>
      <dc:date>2009-12-21T12:27:32Z</dc:date>
    </item>
  </channel>
</rss>

