<?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: Trying to Change Font to Times New Roman in SAS GTL LAYOUT OVERLAY in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887661#M350688</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

proc template;
define style styles.garamond;
parent=styles.listing; /* Or your favorite style */

style graphfonts from graphfonts / 
      'GraphDataFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",7pt)               
      'GraphUnicodeFont' = ("&amp;lt;MTsans-serif-unicode&amp;gt;",9pt)                  
      'GraphValueFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",9pt)              
      'GraphLabel2Font' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)            
      'GraphLabelFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)             
      'GraphFootnoteFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)          
      'GraphTitleFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",11pt,bold)        
      'GraphTitle1Font' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",14pt,bold)       
      'GraphAnnoFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt);             
end;
run;

ods listing style=garamond;
ods html  style=garamond;

proc sgplot data=sashelp.class;
scatter x=weight y=height/group=sex datalabel=name;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 03 Aug 2023 11:36:25 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2023-08-03T11:36:25Z</dc:date>
    <item>
      <title>Trying to Change Font to Times New Roman in SAS GTL LAYOUT OVERLAY</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887598#M350661</link>
      <description>&lt;P&gt;Hello SAS Users,&lt;/P&gt;&lt;P&gt;I am creating a Forest Plot for a project and have followed Sanjay's examples to do this. However, I am trying to change the font of the forest plot tick marks to Times New Roman so that the resulting figure looks consistent with the rest of the production work.&lt;/P&gt;&lt;P&gt;A snippet of the code I have so far is:&lt;/P&gt;&lt;PRE&gt;layout overlay / xaxisopts=(label=' ' type=linear linearopts=(tickvaluepriority=true tickvaluelist=(0.0 0.5 1.0 1.5 2.0 2.5 3.0)))&lt;BR /&gt;                 yaxisopts=(reverse=true display=none) walldisplay=none;&lt;BR /&gt;   highlowplot y=RECID low=RATIO_LCL high=RATIO_UCL; &lt;BR /&gt;   scatterplot y=RECID x=RATIO / markerattrs=(symbol=squarefilled) ;&lt;BR /&gt;   referenceline x=1;&lt;BR /&gt;endlayout;&lt;/PRE&gt;&lt;P&gt;The plot looks like below (no numerical data shown).&amp;nbsp; I'm not sure what option will change the font family.&amp;nbsp; Any guidance is appreciated.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DukeStats_0-1691020572912.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86388iB09CAD9357EBEF0D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DukeStats_0-1691020572912.png" alt="DukeStats_0-1691020572912.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 23:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887598#M350661</guid>
      <dc:creator>DukeStats</dc:creator>
      <dc:date>2023-08-02T23:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to Change Font to Times New Roman in SAS GTL LAYOUT OVERLAY</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887600#M350662</link>
      <description>&lt;P&gt;The option TICKVALUEATTRS=(Family= "&amp;lt;name of font family goes here&amp;gt;") as part of the Linearopts should do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/446437"&gt;@DukeStats&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello SAS Users,&lt;/P&gt;
&lt;P&gt;I am creating a Forest Plot for a project and have followed Sanjay's examples to do this. However, I am trying to change the font of the forest plot tick marks to Times New Roman so that the resulting figure looks consistent with the rest of the production work.&lt;/P&gt;
&lt;P&gt;A snippet of the code I have so far is:&lt;/P&gt;
&lt;PRE&gt;layout overlay / xaxisopts=(label=' ' type=linear linearopts=(tickvaluepriority=true tickvaluelist=(0.0 0.5 1.0 1.5 2.0 2.5 3.0)))&lt;BR /&gt;                 yaxisopts=(reverse=true display=none) walldisplay=none;&lt;BR /&gt;   highlowplot y=RECID low=RATIO_LCL high=RATIO_UCL; &lt;BR /&gt;   scatterplot y=RECID x=RATIO / markerattrs=(symbol=squarefilled) ;&lt;BR /&gt;   referenceline x=1;&lt;BR /&gt;endlayout;&lt;/PRE&gt;
&lt;P&gt;The plot looks like below (no numerical data shown).&amp;nbsp; I'm not sure what option will change the font family.&amp;nbsp; Any guidance is appreciated.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DukeStats_0-1691020572912.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86388iB09CAD9357EBEF0D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DukeStats_0-1691020572912.png" alt="DukeStats_0-1691020572912.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 00:09:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887600#M350662</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-03T00:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to Change Font to Times New Roman in SAS GTL LAYOUT OVERLAY</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887661#M350688</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;

proc template;
define style styles.garamond;
parent=styles.listing; /* Or your favorite style */

style graphfonts from graphfonts / 
      'GraphDataFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",7pt)               
      'GraphUnicodeFont' = ("&amp;lt;MTsans-serif-unicode&amp;gt;",9pt)                  
      'GraphValueFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",9pt)              
      'GraphLabel2Font' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)            
      'GraphLabelFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)             
      'GraphFootnoteFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt)          
      'GraphTitleFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",11pt,bold)        
      'GraphTitle1Font' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",14pt,bold)       
      'GraphAnnoFont' = ("TimesNewRoman, &amp;lt;MTsans-serif&amp;gt;",10pt);             
end;
run;

ods listing style=garamond;
ods html  style=garamond;

proc sgplot data=sashelp.class;
scatter x=weight y=height/group=sex datalabel=name;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Aug 2023 11:36:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887661#M350688</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-08-03T11:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to Change Font to Times New Roman in SAS GTL LAYOUT OVERLAY</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887664#M350691</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;! The option TICKVALUEATTRS worked when I placed it within the XAXISOPTS.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Aug 2023 11:50:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trying-to-Change-Font-to-Times-New-Roman-in-SAS-GTL-LAYOUT/m-p/887664#M350691</guid>
      <dc:creator>DukeStats</dc:creator>
      <dc:date>2023-08-03T11:50:28Z</dc:date>
    </item>
  </channel>
</rss>

