<?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: make tick mark values of x and y axis bold - proc gchart in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428348#M14774</link>
    <description>&lt;P&gt;Use the VALUE= option on the AXIS statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See example here. Proc REGISTRY will list the fonts that are available&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc registry
  startat="CORE\PRINTING\FREETYPE\FONTS"
  list
  levels=1
;
run;

goptions reset=axis;

axis1
  label=(font="Arial/bold/italic" height=20pt "Y axis")
  value=(font="Papyrus" height=10pt)
;
axis2
  label=(font="Arial Narrow/bold/italic" height=20pt "midpoint axis (x)")
  value=(font="Papyrus" height=10pt)
;
proc gchart data=sashelp.cars;
  vbar type /
    raxis=axis1
    maxis=axis2
  ;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please also have a look at ODS Graphicsto see new ways of creating plots&lt;/P&gt;
&lt;P&gt;Look at this blog&amp;nbsp;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt; for plenty of great examples&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jan 2018 13:15:01 GMT</pubDate>
    <dc:creator>BrunoMueller</dc:creator>
    <dc:date>2018-01-17T13:15:01Z</dc:date>
    <item>
      <title>make tick mark values of x and y axis bold - proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428319#M14772</link>
      <description>&lt;P&gt;I am using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;pattern1 color=green;
axis1 label=(a=0 f= "Arial/bold" "Revenue" ) color=black minor =(n=2) value=(angle=0);
axis2 label=(f="Arial/bold" "Trading Category") color=black value=(angle=90);

proc gchart data=Bla(where=(Bla = "&amp;amp;Bla." and Bla='YES'));
	title1 f="Arial/bold" c=black &amp;amp;Title.;
	format Bla NLMNLGBP32.0;
	vbar3d TBla / sumvar=Bla
		width=15
		outside=sum
		descending
		raxis=axis1
		maxis=axis2 
		;	
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way to make the x and y axis values bold arial? Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 10:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428319#M14772</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-01-17T10:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: make tick mark values of x and y axis bold - proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428348#M14774</link>
      <description>&lt;P&gt;Use the VALUE= option on the AXIS statement&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See example here. Proc REGISTRY will list the fonts that are available&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc registry
  startat="CORE\PRINTING\FREETYPE\FONTS"
  list
  levels=1
;
run;

goptions reset=axis;

axis1
  label=(font="Arial/bold/italic" height=20pt "Y axis")
  value=(font="Papyrus" height=10pt)
;
axis2
  label=(font="Arial Narrow/bold/italic" height=20pt "midpoint axis (x)")
  value=(font="Papyrus" height=10pt)
;
proc gchart data=sashelp.cars;
  vbar type /
    raxis=axis1
    maxis=axis2
  ;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please also have a look at ODS Graphicsto see new ways of creating plots&lt;/P&gt;
&lt;P&gt;Look at this blog&amp;nbsp;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt; for plenty of great examples&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 13:15:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428348#M14774</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2018-01-17T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: make tick mark values of x and y axis bold - proc gchart</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428373#M14785</link>
      <description>Thanks - learning about value= ... was enough (-:</description>
      <pubDate>Wed, 17 Jan 2018 14:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/make-tick-mark-values-of-x-and-y-axis-bold-proc-gchart/m-p/428373#M14785</guid>
      <dc:creator>csetzkorn</dc:creator>
      <dc:date>2018-01-17T14:21:14Z</dc:date>
    </item>
  </channel>
</rss>

