<?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: change the font and border color in SGPLOT in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/497994#M21745</link>
    <description>Hi: &lt;BR /&gt;  It depends on what you want to change to white text....titles, labels, legends, footnotes ... there are style elements for each "piece" of the image. But you can start here: &lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatug&amp;amp;docsetTarget=n1o90tknm7aywjn1angcb5ojglgs.htm&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatug&amp;amp;docsetTarget=n1o90tknm7aywjn1angcb5ojglgs.htm&amp;amp;locale=en&lt;/A&gt; and look for style elements like GraphAxisLines, GraphDataText and GraphLabelText.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
    <pubDate>Fri, 21 Sep 2018 22:06:24 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2018-09-21T22:06:24Z</dc:date>
    <item>
      <title>change the font and border color in SGPLOT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/497679#M21739</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using Proc Template to change the style of an sgplot, however with the below code the border colors aren't changing and I need to know how to add the code in to change the color of the text to white.&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;Proc Template;
	define style styles.defstyle;
		parent=styles.default;
		style body from body / 
			backgroundcolor=white;
		class graphgridlines / 
			contrastcolor=white;
		class graphbackground / 
			color=dabg;
		class graphwalls / 
			color=dabg;
		 
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this is the current output&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture5.JPG" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23436i43FFDB33D25B6E28/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture5.JPG" alt="Capture5.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Sep 2018 04:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/497679#M21739</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-09-21T04:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: change the font and border color in SGPLOT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/497994#M21745</link>
      <description>Hi: &lt;BR /&gt;  It depends on what you want to change to white text....titles, labels, legends, footnotes ... there are style elements for each "piece" of the image. But you can start here: &lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatug&amp;amp;docsetTarget=n1o90tknm7aywjn1angcb5ojglgs.htm&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatug&amp;amp;docsetTarget=n1o90tknm7aywjn1angcb5ojglgs.htm&amp;amp;locale=en&lt;/A&gt; and look for style elements like GraphAxisLines, GraphDataText and GraphLabelText.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Fri, 21 Sep 2018 22:06:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/497994#M21745</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2018-09-21T22:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: change the font and border color in SGPLOT</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/498608#M21765</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Cynthia thjat pointed me in the right direction and am now customizing the look of my graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 22:17:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/change-the-font-and-border-color-in-SGPLOT/m-p/498608#M21765</guid>
      <dc:creator>DME790</dc:creator>
      <dc:date>2018-09-24T22:17:32Z</dc:date>
    </item>
  </channel>
</rss>

