<?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 Styles, etc. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44410#M1480</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I apply a style to a title or a footer?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2012 20:36:39 GMT</pubDate>
    <dc:creator>DigDug</dc:creator>
    <dc:date>2012-02-02T20:36:39Z</dc:date>
    <item>
      <title>Styles, etc.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44410#M1480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I apply a style to a title or a footer?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 20:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44410#M1480</guid>
      <dc:creator>DigDug</dc:creator>
      <dc:date>2012-02-02T20:36:39Z</dc:date>
    </item>
    <item>
      <title>Styles, etc.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44411#M1481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; If you want to change the appearance of &lt;STRONG&gt;all&lt;/STRONG&gt; titles and footers in a consistent manner the optimal way would be to use PROC TEMPLATE and create a new custom style based on an existing SAS supplied one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If&amp;nbsp; you need to just modify one (or some specific) title / footer then look in the online help for "enhancing titles" under the "Title Statement" entry in the index for examples of font changes like color and size and such.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 00:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44411#M1481</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-02-03T00:01:38Z</dc:date>
    </item>
    <item>
      <title>Styles, etc.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44412#M1482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The answer to the question depends on how you're creating your graphs. ODS styles affect all graph output and is a good place to make persistent style changes. If you are using SAS/GRAPH procedures or the SG procedures, you can also modify titles and footnotes directly via the TITLE/FOOTNOTE statements. If you are using the Graph Template Language (GTL), TITLE/FOOTNOTE statements do not apply. You would need to make direct title and footnote changes on the ENTRYTITLE/ENTRYFOOTNOTE statements in the template.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;BR /&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 03:11:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44412#M1482</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2012-02-03T03:11:20Z</dc:date>
    </item>
    <item>
      <title>Styles, etc.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44413#M1483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd like to add a little to Dan's "it depends"...&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using traditional SAS/Graph procs (such as gplot, gchart, and gmap) in 9.2 or higher, the ODS styles can affect the color of the titles ... but it can vary, depending on whether you're using 'gtitles' or 'nogtitles'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, when I run the following code with gtitles (titles inside the png image), they are black, but when I run it with nogtitles (titles are in the html, not part of the png image), they are blue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let name=plt080;&lt;BR /&gt;filename odsout '.';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;GOPTIONS DEVICE=png;&lt;BR /&gt;goptions gunit=pct htitle=6.0 htext=4.5&amp;nbsp; ftitle="arial/bo" ftext="arial";&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" nogtitle style=sasweb;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title1 "What color is my title1?";&lt;BR /&gt;title2 "What color is my title2?";&lt;BR /&gt;proc gplot data=sashelp.class;&lt;BR /&gt;plot height*weight /&lt;BR /&gt; des="" name="&amp;amp;name";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;quit;&lt;BR /&gt;ODS HTML CLOSE;&lt;BR /&gt;ODS LISTING;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore, if you want to guarantee your title is the desired color (no matter how the graph is produced), I recommend hard-coding the color in the title statement, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title1 color=hotpink "This is my title";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 13:27:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44413#M1483</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2012-02-03T13:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Styles, etc.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44414#M1484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And, to add onto Robert &amp;amp; Dan's postings, if you are using ODS destinations that support style - -even if you are NOT using SAS/GRAPH or GTL, you can have an impact on your title statement for RTF, PDF and HTML, by doing this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title1 color=hotpink font='Arial Narrow' bold h=14pt "This is my title";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the ODS destinations that support style will use your title specifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods rtf file='c:\temp\hotpink.rtf';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods pdf file='c:\temp\hotpink.pdf';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods html file='c:\temp\hotpink.html';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title1 color=hotpink font='Arial Narrow' bold h=14pt "This is my title";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; proc print data=sashelp.class(obs=2);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;title;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2012 21:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Styles-etc/m-p/44414#M1484</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-02-03T21:17:40Z</dc:date>
    </item>
  </channel>
</rss>

