<?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 Change the font of the title and legend in sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-font-of-the-title-and-legend-in-sgplot/m-p/470820#M16242</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	ods html file="Figure1";
	title " ";
	title2 " ";
	title3 "Title I would like to increase the size of the font" ;
	proc sgplot data=have;
	  xaxis type=discrete valueattrs=(color=black size=12pt)  min=0 max=20;
	  yaxis grid label="IMPRET/CXRET12M" valueattrs=(color=black size=12pt) max=&amp;amp;maxval min=&amp;amp;minval;
	  series x=var3 y=var1/ markers markerattrs=(symbol=CircleFilled color=blue) ;
	  series x=var3 y=var1/ markers markerattrs=(symbol=TriangleFilled color=red) ;
	run;
	title;
	title2;
	title3;
	ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I am trying to increase the size of the font of the title and the legend. Also the text of the variables on the X and y axis. Can someone please help.&lt;/P&gt;</description>
    <pubDate>Sat, 16 Jun 2018 23:47:22 GMT</pubDate>
    <dc:creator>Agent1592</dc:creator>
    <dc:date>2018-06-16T23:47:22Z</dc:date>
    <item>
      <title>Change the font of the title and legend in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-font-of-the-title-and-legend-in-sgplot/m-p/470820#M16242</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	ods html file="Figure1";
	title " ";
	title2 " ";
	title3 "Title I would like to increase the size of the font" ;
	proc sgplot data=have;
	  xaxis type=discrete valueattrs=(color=black size=12pt)  min=0 max=20;
	  yaxis grid label="IMPRET/CXRET12M" valueattrs=(color=black size=12pt) max=&amp;amp;maxval min=&amp;amp;minval;
	  series x=var3 y=var1/ markers markerattrs=(symbol=CircleFilled color=blue) ;
	  series x=var3 y=var1/ markers markerattrs=(symbol=TriangleFilled color=red) ;
	run;
	title;
	title2;
	title3;
	ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I am trying to increase the size of the font of the title and the legend. Also the text of the variables on the X and y axis. Can someone please help.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jun 2018 23:47:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Change-the-font-of-the-title-and-legend-in-sgplot/m-p/470820#M16242</guid>
      <dc:creator>Agent1592</dc:creator>
      <dc:date>2018-06-16T23:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Change the font of the title and legend in sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Change-the-font-of-the-title-and-legend-in-sgplot/m-p/470827#M16248</link>
      <description>&lt;P&gt;Check the docs for Title statements, example 3 in particular.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p10gcmrmf83iaxn1ilrx4pra969n.htm&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.3&amp;amp;docsetId=lestmtsglobal&amp;amp;docsetTarget=p10gcmrmf83iaxn1ilrx4pra969n.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    title3 font='Times New Roman' height=16pt "Title I would like to increase the size of the font" ;
    proc sgplot data=sashelp.class;
     scatter x=height y=weight / group=sex;
    run;
    title3;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also note that:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Using TITLE without arguments cancels all existing titles.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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/116288"&gt;@Agent1592&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	ods html file="Figure1";
	title " ";
	title2 " ";
	title3 "Title I would like to increase the size of the font" ;
	proc sgplot data=have;
	  xaxis type=discrete valueattrs=(color=black size=12pt)  min=0 max=20;
	  yaxis grid label="IMPRET/CXRET12M" valueattrs=(color=black size=12pt) max=&amp;amp;maxval min=&amp;amp;minval;
	  series x=var3 y=var1/ markers markerattrs=(symbol=CircleFilled color=blue) ;
	  series x=var3 y=var1/ markers markerattrs=(symbol=TriangleFilled color=red) ;
	run;
	title;
	title2;
	title3;
	ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am trying to increase the size of the font of the title and the legend. Also the text of the variables on the X and y axis. Can someone please help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jun 2018 00:21:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Change-the-font-of-the-title-and-legend-in-sgplot/m-p/470827#M16248</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-06-17T00:21:29Z</dc:date>
    </item>
  </channel>
</rss>

