<?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: Wordwrap Seriesplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170294#M6302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With ODS graphics questions it is a good idea to include which version of SAS you are running as there have been significant changes in each version and a recommendation based on 9.4 may not help if you are running 9.2. Also your final desired output destination such as HTML, PDF or RTF may affect the outcome.&lt;/P&gt;&lt;P&gt;It may be as simple as having a format a format for your &amp;amp;student_or_degree_level variable that has display values that include \n such as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;/* 1 below is just used for an example, use your values of course*/&lt;/P&gt;&lt;P&gt;value mylabel&lt;/P&gt;&lt;P&gt;1 = "Professional Practice \n (first professional)"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;and in the SGRender code have a format statement associating the variable with the label format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jan 2015 15:33:42 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2015-01-06T15:33:42Z</dc:date>
    <item>
      <title>Wordwrap Seriesplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170293#M6301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial',sans-serif; background: white;"&gt;I have an independent legend created from a series plot using the code below.&amp;nbsp;&amp;nbsp; The legend is functional however it is a larger than I would like.&amp;nbsp; Ideally I would like to make the image smaller by word wrapping the yaxis = y2 section.&amp;nbsp; Even more ideal would be to be able to control where the word wrap occurs.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="SGRender2.png" class="jive-image" src="https://communities.sas.com/legacyfs/online/8585_SGRender2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define statgraph order;&lt;/P&gt;&lt;P&gt;&amp;nbsp; dynamic TITLE1 TITLE2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; begingraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; entrytitle TITLE1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; entrytitle TITLE2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layout overlay / xaxisopts =(display = NONE) yaxisopts = (display = NONE) border=false&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y2axisopts = (&amp;nbsp; reverse = true label = " "&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; linearopts= ( tickvaluesequence=(start=1 end=32 increment=1)));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seriesplot x=xax y= &amp;amp;Student_or_Degree_Level / yaxis = y2 display = all group=&amp;amp;Student_or_Degree_Level &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; index = index lineattrs = (pattern =1 thickness = 1);&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; endgraph;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 14:59:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170293#M6301</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2015-01-06T14:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Wordwrap Seriesplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170294#M6302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With ODS graphics questions it is a good idea to include which version of SAS you are running as there have been significant changes in each version and a recommendation based on 9.4 may not help if you are running 9.2. Also your final desired output destination such as HTML, PDF or RTF may affect the outcome.&lt;/P&gt;&lt;P&gt;It may be as simple as having a format a format for your &amp;amp;student_or_degree_level variable that has display values that include \n such as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc format;&lt;/P&gt;&lt;P&gt;/* 1 below is just used for an example, use your values of course*/&lt;/P&gt;&lt;P&gt;value mylabel&lt;/P&gt;&lt;P&gt;1 = "Professional Practice \n (first professional)"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;and in the SGRender code have a format statement associating the variable with the label format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 15:33:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170294#M6302</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-01-06T15:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Wordwrap Seriesplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170295#M6303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With SAS 9.4 GTL, you can use TickValueFitPolicy in DiscreteOpts with the Y2AxisOpts to wrap the text.&amp;nbsp; You can use specific split characters if you want to control where the split occurs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 15:36:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170295#M6303</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2015-01-06T15:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Wordwrap Seriesplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170296#M6304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Arial',sans-serif; background: white;"&gt;I am using SAS 9.2.&amp;nbsp;&amp;nbsp; Ballardw your example using proc format with \n should solve what I need.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 16:17:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Wordwrap-Seriesplot/m-p/170296#M6304</guid>
      <dc:creator>DavidPhillips2</dc:creator>
      <dc:date>2015-01-06T16:17:31Z</dc:date>
    </item>
  </channel>
</rss>

