<?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: Control tick value distance from x-axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466964#M16065</link>
    <description>&lt;P&gt;This is the template I am using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
define statgraph BarChart_PCT_by_Group / store=sasshare.templat;
dynamic 
dvTitle1Align dvTitle1Text dvTitle1Color dvFootnote1Text  dvFootnote1Color dvFootnote2Text dvFootnote2Color dvX1LabelText dvY1LabelText dvMeasure1Format dvGraphfilltype
dvGraphfillcolor dvGraphdataskin dvViewMax
;
begingraph / collation=binary;
 EntryTitle halign=dvTitle1Align dvTitle1Text / textattrs = (color = dvTitle1Color size=14pt) ; 
 Entryfootnote halign=center dvFootnote1Text / textattrs = (color=dvFootnote1Color weight=bold size=12pt);
 Entryfootnote halign=center dvFootnote2Text / textattrs = (color=dvFootnote2Color weight=bold size=10pt);

	legendItem type=marker name="byGroupMarker" / markerattrs=(symbol=trianglefilled size=9 color=ggr)
							 label="State Average" labelattrs=(color=ggr);

 	layout overlay /
		xaxisopts=( tickstyle=inside tickvaluevalign=top display=(TICKVALUES) label=dvX1LabelText griddisplay=off tickvalueattrs=(weight=normal size=10pt) ) 
		yaxisopts=( display=(LABEL) label=dvY1LabelText linearopts=(tickvalueformat=dvMeasure1Format viewmax=dvViewMax) 
						labelattrs = (family="" color=black weight=bold style=normal size=12pt) );

	    barchart X=category Y=Measure1Value 
			/ stat=mean	
			barlabel=true barlabelattrs=(family="" color=black weight=normal style=normal size=12pt ) 
				barlabelformat=dvMeasure1format filltype=dvGraphfilltype fillattrs=(color=dvGraphfillcolor) dataskin=dvGraphdataskin;

		scatterplot x=category y=Reference1Value / 	markerattrs=(symbol=trianglefilled size=9 color=ggr) datatransparency=.2;
		
		layout gridded / valign=top ;
			discretelegend "byGroupMarker" / 
			halign=left across=1 border=false backgroundcolor=whitesmoke valueattrs=(size=9) outerpad=0 ; 
		endlayout;

	endlayout;
endgraph;
end;
run; &lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 01 Jun 2018 18:14:46 GMT</pubDate>
    <dc:creator>jltz83</dc:creator>
    <dc:date>2018-06-01T18:14:46Z</dc:date>
    <item>
      <title>Control tick value distance from x-axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466823#M16062</link>
      <description>&lt;P&gt;Can someone help me identify the option that can adjust the distance between the x-axis and the tick values. I have tried TICKVALUEVALIGN, but it doesn't have any affect since all of my values are one a single line. I'd like to be able to move the values closer to the axis.&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="3rdGradeEngProfByRace20170100934020.png" style="width: 350px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20941iDBB42E1D33EDD52F/image-size/large?v=v2&amp;amp;px=999" role="button" title="3rdGradeEngProfByRace20170100934020.png" alt="3rdGradeEngProfByRace20170100934020.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 13:22:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466823#M16062</guid>
      <dc:creator>jltz83</dc:creator>
      <dc:date>2018-06-01T13:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Control tick value distance from x-axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466843#M16063</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/24571"&gt;@jltz83&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can someone help me identify the option that can adjust the distance between the x-axis and the tick values. I have tried TICKVALUEVALIGN, but it doesn't have any affect since all of my values are one a single line. I'd like to be able to move the values closer to the axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It would help to show the code you are using so far. Since there are different ways to make similar appearing graphs some suggestions might not work with your approach.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jun 2018 14:25:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466843#M16063</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-06-01T14:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Control tick value distance from x-axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466964#M16065</link>
      <description>&lt;P&gt;This is the template I am using.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
define statgraph BarChart_PCT_by_Group / store=sasshare.templat;
dynamic 
dvTitle1Align dvTitle1Text dvTitle1Color dvFootnote1Text  dvFootnote1Color dvFootnote2Text dvFootnote2Color dvX1LabelText dvY1LabelText dvMeasure1Format dvGraphfilltype
dvGraphfillcolor dvGraphdataskin dvViewMax
;
begingraph / collation=binary;
 EntryTitle halign=dvTitle1Align dvTitle1Text / textattrs = (color = dvTitle1Color size=14pt) ; 
 Entryfootnote halign=center dvFootnote1Text / textattrs = (color=dvFootnote1Color weight=bold size=12pt);
 Entryfootnote halign=center dvFootnote2Text / textattrs = (color=dvFootnote2Color weight=bold size=10pt);

	legendItem type=marker name="byGroupMarker" / markerattrs=(symbol=trianglefilled size=9 color=ggr)
							 label="State Average" labelattrs=(color=ggr);

 	layout overlay /
		xaxisopts=( tickstyle=inside tickvaluevalign=top display=(TICKVALUES) label=dvX1LabelText griddisplay=off tickvalueattrs=(weight=normal size=10pt) ) 
		yaxisopts=( display=(LABEL) label=dvY1LabelText linearopts=(tickvalueformat=dvMeasure1Format viewmax=dvViewMax) 
						labelattrs = (family="" color=black weight=bold style=normal size=12pt) );

	    barchart X=category Y=Measure1Value 
			/ stat=mean	
			barlabel=true barlabelattrs=(family="" color=black weight=normal style=normal size=12pt ) 
				barlabelformat=dvMeasure1format filltype=dvGraphfilltype fillattrs=(color=dvGraphfillcolor) dataskin=dvGraphdataskin;

		scatterplot x=category y=Reference1Value / 	markerattrs=(symbol=trianglefilled size=9 color=ggr) datatransparency=.2;
		
		layout gridded / valign=top ;
			discretelegend "byGroupMarker" / 
			halign=left across=1 border=false backgroundcolor=whitesmoke valueattrs=(size=9) outerpad=0 ; 
		endlayout;

	endlayout;
endgraph;
end;
run; &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Jun 2018 18:14:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Control-tick-value-distance-from-x-axis/m-p/466964#M16065</guid>
      <dc:creator>jltz83</dc:creator>
      <dc:date>2018-06-01T18:14:46Z</dc:date>
    </item>
  </channel>
</rss>

