<?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: Add ticks to y2axis in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358931#M12496</link>
    <description>&lt;P&gt;I am not getting any error messages but i dont see anything on the y2axis&lt;/P&gt;</description>
    <pubDate>Tue, 16 May 2017 07:25:43 GMT</pubDate>
    <dc:creator>Melk</dc:creator>
    <dc:date>2017-05-16T07:25:43Z</dc:date>
    <item>
      <title>Add ticks to y2axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358830#M12492</link>
      <description>&lt;P&gt;I am using sgplot to build vertical boxplots and would like to add ticks without labels to the y2axis where the yaxis has labels. when i add y2axis the yaxis goes away. how can i do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data=data;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;vbox out / group=cat;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; INSET 'p-value &amp;lt;0.001' / POSITION=TOPLEFT BORDER;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 20:06:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358830#M12492</guid>
      <dc:creator>Melk</dc:creator>
      <dc:date>2017-05-15T20:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Add ticks to y2axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358832#M12493</link>
      <description>&lt;P&gt;Did you try having a Yaxis statement and a Y2axis statement?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sounds like you might want a Display=Novalues on a Y2axis statement.&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 20:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358832#M12493</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-15T20:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add ticks to y2axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358931#M12496</link>
      <description>&lt;P&gt;I am not getting any error messages but i dont see anything on the y2axis&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2017 07:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358931#M12496</guid>
      <dc:creator>Melk</dc:creator>
      <dc:date>2017-05-16T07:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add ticks to y2axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358944#M12497</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get something on the Y2 axis, you need a plot statement that uses this axis. The example below uses two VBOX, the second is completely transparent and so not visiable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=sashelp.cars;
  vbox invoice / group=origin name="vb1" ;
  vbox invoice / group=origin name="vb2" transparency=1 y2axis;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 May 2017 08:09:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/358944#M12497</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2017-05-16T08:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add ticks to y2axis</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/359040#M12500</link>
      <description>&lt;P&gt;On the YAXIS statement, use the REFTICKS option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc sgplot data=data;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; yaxis refticks=(values);&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;vbox out / group=cat;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; INSET 'p-value &amp;lt;0.001' / POSITION=TOPLEFT BORDER;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you only want tick marks, just say REFTICKS without any arguments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Dan&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2017 14:19:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Add-ticks-to-y2axis/m-p/359040#M12500</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-05-16T14:19:50Z</dc:date>
    </item>
  </channel>
</rss>

