<?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 GPLOT titling issue in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80128#M2980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;GPLOT titling issue&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;I am using V9.2 for Windows.&lt;P&gt;I have 4 title lines, TITLE1-4, that I want to output. Everything worked until I tried to reuse TITLE2 for a second plot. If I define TITLE2 after defining TITLE3 &amp;amp; TITLE4, the last 2 title lines don't come out.&amp;nbsp; Is there a way to preserve titles 3 &amp;amp; 4 when I change title 2?&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2012 18:27:50 GMT</pubDate>
    <dc:creator>JohnH</dc:creator>
    <dc:date>2012-04-11T18:27:50Z</dc:date>
    <item>
      <title>GPLOT titling issue</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80128#M2980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;GPLOT titling issue&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;I am using V9.2 for Windows.&lt;P&gt;I have 4 title lines, TITLE1-4, that I want to output. Everything worked until I tried to reuse TITLE2 for a second plot. If I define TITLE2 after defining TITLE3 &amp;amp; TITLE4, the last 2 title lines don't come out.&amp;nbsp; Is there a way to preserve titles 3 &amp;amp; 4 when I change title 2?&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2012 18:27:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80128#M2980</guid>
      <dc:creator>JohnH</dc:creator>
      <dc:date>2012-04-11T18:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT titling issue</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80129#M2981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't be done, sort of.&amp;nbsp; Titles are designed to work that way.&amp;nbsp; Quick, short solutions include changing the order of the titles so that the one that changes is the last one, or repeating your TITLE3 and TITLE4 statements once you change TITLE2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In theory, you could write a macro to do this.&amp;nbsp; After all, current title settings are stored in dictionary.titles.&amp;nbsp; So you could capture the current settings, replace TITLE2, and then use the captured values to reinstate TITLE3 and TITLE4.&amp;nbsp; But nobody I know has ever wanted to jump through that hoop.&amp;nbsp; The quick solutions I first mentioned are the ones that most people choose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2012 20:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80129#M2981</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2012-04-11T20:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT titling issue</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80130#M2982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this occurs in enough places and you don't want to copy paste a lot, especially when making changes you could use a short macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro bottomtitles;&lt;/P&gt;&lt;P&gt;title3 "Your title3 text goes here";&lt;/P&gt;&lt;P&gt;title4 "Your title4 text goes here";&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Title2 "New title2 text";&lt;/P&gt;&lt;P&gt;%bottomtitles;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or possibly slicker have IF TITLE2 is the only one that changes and changes often:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro MyTitles(title2);&lt;/P&gt;&lt;P&gt;Title1 "Title1 text";&lt;/P&gt;&lt;P&gt;title2 "&amp;amp;title2";&lt;/P&gt;&lt;P&gt;title3 "Your title3 text goes here";&lt;/P&gt;&lt;P&gt;title4 "Your title4 text goes here";&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use:&lt;/P&gt;&lt;P&gt;%MyTitles(This is the first text for title2);&lt;/P&gt;&lt;P&gt;and later&lt;/P&gt;&lt;P&gt;%MyTitles(This is the later text for title2);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2012 23:29:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-titling-issue/m-p/80130#M2982</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-04-11T23:29:01Z</dc:date>
    </item>
  </channel>
</rss>

