<?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 to cut y-axis title split to two rows in proc sgpanel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577689#M163714</link>
    <description>&lt;PRE&gt;rowaxis label='Hazard Ratio Between Midpoint Imputation and Gold-Standard' 
fitpolicy=splitalways   splitchar=' '    ;&lt;/PRE&gt;</description>
    <pubDate>Tue, 30 Jul 2019 12:01:39 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2019-07-30T12:01:39Z</dc:date>
    <item>
      <title>how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577582#M163666</link>
      <description>&lt;P&gt;Hi Folks:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any idea how to split y-axis title in the plot shown below into two rows? so title would appear a whole? Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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="cut title.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31402i141B66FD05243466/image-size/large?v=v2&amp;amp;px=999" role="button" title="cut title.png" alt="cut title.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/width=11in height=3in;
proc sgpanel data=mydata;
panelby SORT/ novarname columns=4 rows=1;
styleattrs DATACONTRASTCOLORS=(BLUE green red);
series  x=FU y=HazardRatio/lineattrs=(pattern=solid thickness=2) GROUP=S;
REFLINE 1 / LABEL = ('HR=1')  lineattrs=(color=black pattern=solid thickness=1) labelpos=min; 
colaxis label='Weeks' min=1 max=100 grid values=(0 to 52 by 1);
rowaxis label='Hazard Ratio Between Midpoint Imputation and Gold-Standard' 
fitpolicy=thin grid  values=(1 to 1.5 by 0.1);
keylegend/  title="Cancer Stage" position=TOP;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jul 2019 02:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577582#M163666</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-07-30T02:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577689#M163714</link>
      <description>&lt;PRE&gt;rowaxis label='Hazard Ratio Between Midpoint Imputation and Gold-Standard' 
fitpolicy=splitalways   splitchar=' '    ;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jul 2019 12:01:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577689#M163714</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-07-30T12:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577707#M163728</link>
      <description>Thanks Ksharp. the addition into the code didn't change anything. any idea?</description>
      <pubDate>Tue, 30 Jul 2019 12:50:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577707#M163728</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-07-30T12:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577907#M163813</link>
      <description>&lt;P&gt;The split options are for tick marks I think. I couldn't find a way to split that title. Sorry.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 22:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/577907#M163813</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-07-30T22:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578355#M164018</link>
      <description>Thank for letting me know. Knowing this, I shortened my title to fit. The shorter title actually worked out better.</description>
      <pubDate>Thu, 01 Aug 2019 12:05:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578355#M164018</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-08-01T12:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578358#M164020</link>
      <description>&lt;P&gt;Maybe you could post it at ODS Graphic forum . There are more smart Graphic guys in it .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 12:14:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578358#M164020</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-08-01T12:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to cut y-axis title split to two rows in proc sgpanel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578388#M164030</link>
      <description>I'm satisfied with the shorter title given moving forward is being more important. Thanks Ksharp.</description>
      <pubDate>Thu, 01 Aug 2019 13:18:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-cut-y-axis-title-split-to-two-rows-in-proc-sgpanel/m-p/578388#M164030</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2019-08-01T13:18:43Z</dc:date>
    </item>
  </channel>
</rss>

