<?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: Renaming SAS PROCEDURE TITLE in Graph in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42825#M11172</link>
    <description>Thanks got it.</description>
    <pubDate>Thu, 13 Nov 2008 19:13:05 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-11-13T19:13:05Z</dc:date>
    <item>
      <title>Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42820#M11167</link>
      <description>Hello all, looking for a hand here.&lt;BR /&gt;
&lt;BR /&gt;
I have created a graph using EG and manual coding for formatting of the graph.  My code creates three graphs, one for each of the 3 scenarios in my data.  Instead of displaying the somewhat criptic Procedure Title (Scenario_Name-ScenX56463 for example), I would like to rename this Procedure Title in the three graphs to something more descriptive such as Scenario X - Cost Based Analysis for the first graph, Scenario Y - Bid Cost Analysis for the second and Scenario Z - High Cost Analysis in the third.  Is there any way of simply renaming the Procedure Title?  &lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
B</description>
      <pubDate>Fri, 29 Aug 2008 17:41:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42820#M11167</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-08-29T17:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42821#M11168</link>
      <description>Hi:&lt;BR /&gt;
  Generally, SAS/Graph does not put the PROCEDURE title into the graph output -- however, if you chose "group by" in the EG task, then SAS/Graph probably has inserted a BY statement into your SAS/Graph code and this is usually the "sub title" that you see under the regular title in your Graph output.&lt;BR /&gt;
&lt;BR /&gt;
  What you can do is change the label for your Scenario_Name variable to be something like "Scenario" and then have a user defined format for your values -- something like this (proc format should be completely ABOVE/BEFORE/OUTSIDE the SAS/Graph code):&lt;BR /&gt;
[pre]&lt;BR /&gt;
  proc format;&lt;BR /&gt;
     value $sn 'ScenX56463' = 'X - Cost Based Analysis'&lt;BR /&gt;
               'ScenY56464' = 'Y - Bid Cost Analysis'&lt;BR /&gt;
               'ScenZ56465' = 'Z - High Cost Analysis';&lt;BR /&gt;
  run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Then you'd need to add a format statement and a label statement inside your Graph code like this:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc gwhatever ... ;&lt;BR /&gt;
  by Scenario_Name;&lt;BR /&gt;
....more code... ;&lt;BR /&gt;
  label Scenario_Name = 'Scenario';&lt;BR /&gt;
  format Scenario_Name $sn.;&lt;BR /&gt;
  run;&lt;BR /&gt;
quit;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
      &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 29 Aug 2008 19:42:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42821#M11168</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-08-29T19:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42822#M11169</link>
      <description>Perfect! Thank you Cynthia!</description>
      <pubDate>Fri, 29 Aug 2008 22:47:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42822#M11169</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-08-29T22:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42823#M11170</link>
      <description>Follow up on my previous issue.  Now how do I change the font size of the Sub Title?  &lt;BR /&gt;
&lt;BR /&gt;
Thanks!</description>
      <pubDate>Thu, 13 Nov 2008 17:49:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42823#M11170</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-13T17:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42824#M11171</link>
      <description>Hi:&lt;BR /&gt;
  Look at the doc on the GOPTIONS statement. The CBY= and FBY= options would alter the color and font respectively of the BYLINE.&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 13 Nov 2008 17:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42824#M11171</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-11-13T17:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Renaming SAS PROCEDURE TITLE in Graph</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42825#M11172</link>
      <description>Thanks got it.</description>
      <pubDate>Thu, 13 Nov 2008 19:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Renaming-SAS-PROCEDURE-TITLE-in-Graph/m-p/42825#M11172</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-13T19:13:05Z</dc:date>
    </item>
  </channel>
</rss>

