<?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: How do I costumize a single tick mark? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-do-I-costumize-a-single-tick-mark/m-p/462304#M15944</link>
    <description>&lt;P&gt;You can overly graphs one on top of the other, so my first thought was why not, overly a second graph which only has the two points in question, but with tick marks bolded, and set the size of marks to 0, i.e. so only the axis shows and overlays what you have, with the two ticks bolded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another idea to is plot a 2 point graph over the top with the marks labelled as what you want bolded, rather than setting them on the axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatug&amp;amp;docsetTarget=p1pqfzgbuzbpkzn1mrbzhgggvhkz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatug&amp;amp;docsetTarget=p1pqfzgbuzbpkzn1mrbzhgggvhkz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find a lot of information here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 May 2018 10:26:41 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2018-05-15T10:26:41Z</dc:date>
    <item>
      <title>How do I costumize a single tick mark?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-I-costumize-a-single-tick-mark/m-p/462297#M15943</link>
      <description>&lt;P&gt;Hi there,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm struggeling to costumize my box plot. I would like the tick mark values "ADHD only" and "ADHD and.." to be bold - not the rest. I would also like the tick mark value "ADHD and.." to be left justify (like a title) and to remove the actual tick for this value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far I have the code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; define statgraph confidence_V;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; begingraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; entrytitle 'Interaction analysis for ADHD and comorbid psychiatric disorders';&lt;/P&gt;&lt;P&gt;discreteattrmap name='colors' / ignorecase=true;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;value "2" /;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;value "1" / fillattrs=(color=VIYPK) lineattrs=(color=black);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;value "0" / fillattrs=(color=LIGRBR) lineattrs=(color=black);&lt;/P&gt;&lt;P&gt;enddiscreteattrmap;&lt;/P&gt;&lt;P&gt;discreteattrvar attrvar=unitcolor var=colour attrmap='colors';&lt;/P&gt;&lt;P&gt;layout overlay / yaxisopts=(offsetmin=0 labelposition=top griddisplay=off label=' ' reverse=true) xaxisopts=(griddisplay=on label='IRR');&lt;/P&gt;&lt;P&gt;barchartparm x=ICD y=rate_ratio /&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;errorupper=up_ci&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;errorlower=low_ci&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;group=unitcolor&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;groupdisplay=cluster&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;orient=horizontal&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; endlayout;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; endgraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgrender data=figur8 template=confidence_V;&lt;/P&gt;&lt;P&gt;format=ICD diag.;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I get the attached result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using version 9.4 TS1M2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for any clue!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Cecilie&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 09:19:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-I-costumize-a-single-tick-mark/m-p/462297#M15943</guid>
      <dc:creator>CecilieAalling</dc:creator>
      <dc:date>2018-05-15T09:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I costumize a single tick mark?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-do-I-costumize-a-single-tick-mark/m-p/462304#M15944</link>
      <description>&lt;P&gt;You can overly graphs one on top of the other, so my first thought was why not, overly a second graph which only has the two points in question, but with tick marks bolded, and set the size of marks to 0, i.e. so only the axis shows and overlays what you have, with the two ticks bolded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another idea to is plot a 2 point graph over the top with the marks labelled as what you want bolded, rather than setting them on the axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatug&amp;amp;docsetTarget=p1pqfzgbuzbpkzn1mrbzhgggvhkz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatug&amp;amp;docsetTarget=p1pqfzgbuzbpkzn1mrbzhgggvhkz.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find a lot of information here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 10:26:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-do-I-costumize-a-single-tick-mark/m-p/462304#M15944</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-05-15T10:26:41Z</dc:date>
    </item>
  </channel>
</rss>

