<?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 remove the frame of survival curve in the topright corner generated by proc lifetest in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663827#M20106</link>
    <description>&lt;P&gt;Hi~&lt;/P&gt;&lt;P&gt;Hi, first time poster form down under.&lt;/P&gt;&lt;P&gt;Love the site - its been very useful already - thanks all.&lt;/P&gt;&lt;P&gt;I have created a survival curve using proc lifetest.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/noborder;
proc lifetest data=sashelp.BMT
              plots=survival(cb=hw atrisk(maxlen=13));
   time T * Status(0);
   strata Group;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PFS生存分析9.png" style="width: 491px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46428i0B25A790CFDDEF39/image-dimensions/491x351?v=v2" width="491" height="351" role="button" title="PFS生存分析9.png" alt="PFS生存分析9.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;how can i remove the top and right hand axis 'frames' so that only the two axis lines are left.&lt;/P&gt;&lt;P&gt;Does anybody know how I might do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 21 Jun 2020 10:32:18 GMT</pubDate>
    <dc:creator>shanzha</dc:creator>
    <dc:date>2020-06-21T10:32:18Z</dc:date>
    <item>
      <title>remove the frame of survival curve in the topright corner generated by proc lifetest</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663827#M20106</link>
      <description>&lt;P&gt;Hi~&lt;/P&gt;&lt;P&gt;Hi, first time poster form down under.&lt;/P&gt;&lt;P&gt;Love the site - its been very useful already - thanks all.&lt;/P&gt;&lt;P&gt;I have created a survival curve using proc lifetest.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/noborder;
proc lifetest data=sashelp.BMT
              plots=survival(cb=hw atrisk(maxlen=13));
   time T * Status(0);
   strata Group;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PFS生存分析9.png" style="width: 491px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/46428i0B25A790CFDDEF39/image-dimensions/491x351?v=v2" width="491" height="351" role="button" title="PFS生存分析9.png" alt="PFS生存分析9.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;how can i remove the top and right hand axis 'frames' so that only the two axis lines are left.&lt;/P&gt;&lt;P&gt;Does anybody know how I might do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 10:32:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663827#M20106</guid>
      <dc:creator>shanzha</dc:creator>
      <dc:date>2020-06-21T10:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: remove the frame of survival curve in the topright corner generated by proc lifetest</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663846#M20107</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/78033"&gt;@shanzha&lt;/a&gt;&amp;nbsp;and welcome to the SAS Support Communities!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the documentation "ODS Graphics Template Modification" there is an&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_templt_sect021.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_blank" rel="noopener"&gt;Example 22.4 Customizing Axes and Reference Lines&lt;/A&gt;, which (among other things) explains "&lt;SPAN&gt;how you can change the style so that a frame is not shown:"&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
   define style noframe;
      parent=styles.listing; /* &amp;lt;-- enter your preferred style here */
      style graphwalls from graphwalls / frameborder=off;
   end;
run;

ods listing style=noframe;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(So, you would insert the above code with or without modifications before yours.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The original example uses&amp;nbsp;&lt;FONT face="courier new,courier"&gt;styles.htmlblue&lt;/FONT&gt; as the "parent" style. I used &lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;styles.listing&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;in order to maintain the other characteristics of my default graph. You may want to enter your current style (not sure what its name is) and use your preferred ODS destination (e.g., &lt;FONT face="courier new,courier"&gt;ods html&lt;/FONT&gt; instead of &lt;FONT face="courier new,courier"&gt;ods listing&lt;/FONT&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jun 2020 15:43:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663846#M20107</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-06-21T15:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: remove the frame of survival curve in the topright corner generated by proc lifetest</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663892#M20108</link>
      <description>&lt;P&gt;thank you so much,the problem is resolved&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jun 2020 00:12:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/remove-the-frame-of-survival-curve-in-the-topright-corner/m-p/663892#M20108</guid>
      <dc:creator>shanzha</dc:creator>
      <dc:date>2020-06-22T00:12:49Z</dc:date>
    </item>
  </channel>
</rss>

