<?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: GTL - How to allocate more space for titles and axis labels to avoid truncation. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976296#M25683</link>
    <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;for the detailed information. &lt;SPAN&gt;TMPLOUT="filename"&amp;nbsp;option was very useful. I could easily see my template options and modify them as needed.&amp;nbsp;&lt;BR /&gt;So far, modified template allows all titles and axis labels to fit.&amp;nbsp;&lt;BR /&gt;I'm using ENTRY statements as &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp; suggested for x-axis labels which challenges me to figure out the splitting point of long labels. Using %SUBSTR function I could split it, but it is also truncating whole words into pieces, unfortunately I couldn't figure out to split the string into whole word parts. Alternatively, I might add explicitly "separators" inside the labels and use %scan function or other options (splitchar maybe). But I'm not sure if this would be the (best) solution. Besides, I need to eliminate the "SGRENDER PROCEDURE" name&amp;nbsp; from the TOC.&amp;nbsp; In majority of SG procedures CONTENTS='' option drops proc names from TOC. It seems this option doesn't work for SGRENDER.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Below I'm providing my actual code for readers review, and wonder anyone could suggest how to fix those 2 minor issues.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options  nodate nonumber ;
ods escapechar='~'; 
ODS rtf FILE = "&amp;amp;mypath\InterItem corr.rtf" contents=yes toc_data ;
	%macro items1(xitems=, yitems=)/minoperator; 
		%do x=1 %to 8; 
			%do y=1 %to 8; 
				%let xitem= %scan(&amp;amp;xitems, &amp;amp;x); 
				%let yitem= %scan(&amp;amp;yitems, &amp;amp;y); 
				%if &amp;amp;xitem ne &amp;amp;yitem %then %do; 
					ods proclabel="Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of &amp;amp;&amp;amp;&amp;amp;xitem and &amp;amp;&amp;amp;&amp;amp;yitem at Baseline"; 
					proc template;
						define statgraph label;
							begingraph;
								entrytitle halign=center "Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of &amp;amp;&amp;amp;&amp;amp;xitem and &amp;amp;&amp;amp;&amp;amp;yitem at Baseline"/ textattrs=( family="Arial" size=9pt weight=bold) halignCenter=Graph;
								layout gridded;
									layout overlay / xaxisopts=( type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 Integer=true ) display=(line ticks tickvalues) ) 
										y2axisopts=(labelFitPolicy=Split labelattrs=( family="Arial" size=9pt weight=normal)) 
										yaxisopts=( labelposition=datacenter Label="&amp;amp;&amp;amp;&amp;amp;yitem" labelattrs=( family="Arial" size=9pt weight=normal) labelFitPolicy=Split type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 Integer=true ) ) 
										y2axisopts=(labelFitPolicy=Split labelattrs=( family="Arial" size=9pt weight=normal));
						   				ScatterPlot X=&amp;amp;xitem Y=&amp;amp;yitem / subpixel=off jitter=auto primary=true NAME="SCATTER";
						   				ScatterPlot X=&amp;amp;xitem Y=&amp;amp;yitem / primary=true;
						  				RegressionPlot X=&amp;amp;xitem Y=&amp;amp;yitem / Lineattrs=( Color=CX000000 Thickness=2) Maxpoints=2;
									endlayout;
										entry "                  %qsubstr(&amp;amp;&amp;amp;&amp;amp;xitem, 1, 70)";
										entry "                  %qsubstr(&amp;amp;&amp;amp;&amp;amp;xitem, 71)";
								endlayout;
							endgraph;
						end;
					run;
					ods noproctitle; 
					proc sgrender data=items template=label;
					run;
					title;footnote; 
				%end; 
			%end; 
		%end; 
	%mend; 
	%items1(xitems=PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108, yitems= PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108);

ODS _all_ CLOSE;
ods html;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TOC.png" style="width: 845px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110359i64733F5575B267DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="TOC.png" alt="TOC.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plot.png" style="width: 813px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110360i07E0C9A1360C3345/image-size/large?v=v2&amp;amp;px=999" role="button" title="plot.png" alt="plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Oct 2025 03:03:06 GMT</pubDate>
    <dc:creator>A_Kh</dc:creator>
    <dc:date>2025-10-03T03:03:06Z</dc:date>
    <item>
      <title>GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976153#M25679</link>
      <description>&lt;P&gt;Hello Community,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm producing a series of graphs with long titles and axis labels.&amp;nbsp; Using SGPLOT (SAS version: 9.04.01M5P091317) and resulted images are very inconsistent, some of them has printed the whole title/label wrapping it in multiple lines when necessary, but others just truncate the same labels. I'm outputting images into .rtf file. So far tried to adjust image/font size, rtf page size etc. but couldn't find a solution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Looking at the sas dosumentation on &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/v_067/statug/statug_templt_sect003.htm" target="_self"&gt;GTL&lt;/A&gt;&amp;nbsp;I've tried to modify the image template, but the options provided in the documentation don't let me find the right template source . Created log file is missing the template name and the source (see the code and log below.)&lt;BR /&gt;Besides, even if I find the source template I've no idea about the options that need to be applied to allocate more space for labels and titles.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Modify graph template*/ 
ods trace on;
ods graphics on;
proc sgplot data=have description='' noborder noautolegend; 
	scatter x=height y=age;
	reg x=height y=age; 
run; 
ods trace off;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;98   ods trace on;
99   ods graphics on;
100  proc sgplot data=have description='' noborder noautolegend;
101      scatter x=height y=age;
102      reg x=height y=age;
103  run;

NOTE: PROCEDURE SGPLOT used (Total process time):
      real time           0.13 seconds
      cpu time            0.06 seconds


Output Added:
-------------
Name:       SGPlot
Label:      ' '
Path:       SGPlot.SGPlot
-------------
NOTE: There were 19 observations read from the data set WORK.HAVE.

104  ods trace off;

&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Below is the simulated image and output with long labels using sashelp.class data.&amp;nbsp; As seen in the picture X-axis labels get truncated while Y-axis wrapped up.&amp;nbsp;&lt;BR /&gt;Could anyone provide some guidance, please, on how to resolve the truncation issue: either using SGPLOT options or by modifying image template using GTL.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have; 
	set sashelp.class; 
	label age= 'This variable has a very long label that needs to be wrapped up in the y-axis of the graph'
			height= 'This variable has a very long label that needs to be wrapped up in the x-axis of the graph';
run; 

options nodate nonumber; 
ods rtf file='test.rtf' contents=yes toc_data;
ods noproctitle; 
ods proclabel='Correlation of Age and Height in Sashelp.class dataset';
title font='Times New Roman' height=10pt j=c 'Correlation of Age and Height in Sashelp.class dataset';
ods graphics/imagefmt=png width=650px height=650px; 
proc sgplot data=have description='' noborder; 
	scatter x=height y=age;
	reg x=height y=age; 
run; 
ods rtf close; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-10-01 133215.png" style="width: 837px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110312i087CC533E77BB42B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-10-01 133215.png" alt="Screenshot 2025-10-01 133215.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 18:28:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976153#M25679</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2025-10-01T18:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976178#M25680</link>
      <description>&lt;P&gt;Unfortunately, there is currently a limitation in ODS Graphics where only one axis label can be wrapped at a time. The SGPLOT procedure uses heuristics to determine which axis should be allowed to wrap. There are a couple of alternatives for your situation:&lt;/P&gt;
&lt;P&gt;1. Turn off the bottom axis label and annotate it.&lt;/P&gt;
&lt;P&gt;2. In GTL, turn off the bottom axis label and use ENTRYs in a gridded layout -- something like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template;
define statgraph label;
begingraph;
layout gridded;
layout overlay / yaxisopts=(label='This variable has a very long label that needs to be wrapped up in the y-axis of the graph' labelfitpolicy=split) xaxisopts=(display=(line ticks tickvalues));
scatterplot x=age y=height;
endlayout;
entry "                  This variable has a very long label that needs";
entry "                  to be wrapped up in the y-axis of the graph";
endlayout;
endgraph;
end;
run;

proc sgrender data=sashelp.class template=label;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I would probably favor option #1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 20:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976178#M25680</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2025-10-01T20:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976181#M25681</link>
      <description>&lt;P&gt;You don't&amp;nbsp; have to create a separate data set to create labels. Just use the data set and the LABEL statement in the Procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can create the template code without using ods trace. Use the Proc Sgplot option TMPLOUT="filename" on the proc statement. The option creates a text file (i.e. if named with .sas extension a program code file) at the location and name you provide. My example uses windows writing to the root of the D drive. You need to provide valid path and file name for your system.&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.class description='' noborder noautolegend
   tmplout="d:\yourfile.txt"
;
      scatter x=height y=age;
      reg x=height y=age;
	label age= 'This variable has a very long label that needs to be wrapped up in the y-axis of the graph'
			height= 'This variable has a very long label that needs to be wrapped up in the x-axis of the graph';

run;
&lt;/PRE&gt;
&lt;P&gt;I didn't add all of your options, the code above shows this for the generated template:&lt;/P&gt;
&lt;PRE&gt;proc template;
define statgraph sgplot;
begingraph / collation=binary subpixel=on;
layout overlay / walldisplay=(fill) yaxisopts=(labelFitPolicy=Split) y2axisopts=(labelFitPolicy=Split);
   ScatterPlot X=Height Y=Age / subpixel=off primary=true LegendLabel="This variable has a very long label that needs to be wrapped up in the y-axis of the graph" NAME="SCATTER";
   ScatterPlot X=Height Y=Age / primary=true;
   RegressionPlot X=Height Y=Age / NAME="REG" LegendLabel="Regression" Maxpoints=2;
endlayout;
endgraph;
end;
run;
&lt;/PRE&gt;
&lt;P&gt;Your ODS RTF output uses a different style template than the results window by default. So you should test and specify a specific ODS style for a better chance at consistency. I think that style STYLES.RTF defaults to larger fonts in some places so you might try a style which uses smaller fonts and/or XAXIS and YAXIS statements Labelattrs, control label text appearance, Splitchar, to control where label text splits, and maybe Splitjustify for alignment of secondary lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proportional fonts mean that text with the same number of characters takes up different amounts of space in the display and "simple" looking at length of a string is difficult. So you may have to take some time with your actual long strings to have good control.&lt;/P&gt;
&lt;P&gt;An example of the difference in space as this window typically uses a proportional font:&lt;/P&gt;
&lt;P&gt;iiiiiiiiii&lt;/P&gt;
&lt;P&gt;WWWWWWWWWW&lt;/P&gt;
&lt;P&gt;There are 10 characters in each of those strings but the second takes almost 4 times the display space. Using characteristics like bold and italic can drastically alter the display length as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So be prepared to spend a lot of time and possible heartbreak over things not quite fitting.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 20:47:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976181#M25681</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-10-01T20:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976293#M25682</link>
      <description>&lt;P&gt;The little trick is using "0A"x character .&lt;/P&gt;
&lt;P&gt;But intesting thing is&amp;nbsp; character connecting operator “||” is not working here. I don't know why? I am using SAS OnDemand for Academic . Here is an example:&lt;/P&gt;
&lt;PRE&gt;
data have; 
	set sashelp.class; 
	label age= "This variable has a very long label that" '0A'x "needs to be wrapped up in the y-axis of the graph"
			height= 'This variable has a very long label that' '0A'x 'needs to be wrapped up in the x-axis of the graph';
run; 

title font='Times New Roman' height=10pt j=c 'Correlation of Age and Height in Sashelp.class dataset';
ods graphics/imagefmt=png width=650px height=650px; 
proc sgplot data=have description='' noborder; 
	scatter x=height y=age;
	reg x=height y=age; 
run; 
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1759458110309.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110357i842288E353524304/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1759458110309.png" alt="Ksharp_0-1759458110309.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data have; 
	set sashelp.class; 
	label age= "This variable has a very long label that"&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;||&lt;/STRONG&gt;&lt;/FONT&gt;'0A'x&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;||&lt;/STRONG&gt;&lt;/FONT&gt;"needs to be wrapped up in the y-axis of the graph"
			height= 'This variable has a very long label that'&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;||&lt;/STRONG&gt;&lt;/FONT&gt;'0A'x&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;||&lt;/FONT&gt;&lt;/STRONG&gt;'needs to be wrapped up in the x-axis of the graph';
run; 

title font='Times New Roman' height=10pt j=c 'Correlation of Age and Height in Sashelp.class dataset';
ods graphics/imagefmt=png width=650px height=650px; 
proc sgplot data=have description='' noborder; 
	scatter x=height y=age;
	reg x=height y=age; 
run; 
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_1-1759458217257.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110358i5CC759E5DABAEEA7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_1-1759458217257.png" alt="Ksharp_1-1759458217257.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 02:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976293#M25682</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-10-03T02:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976296#M25683</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;for the detailed information. &lt;SPAN&gt;TMPLOUT="filename"&amp;nbsp;option was very useful. I could easily see my template options and modify them as needed.&amp;nbsp;&lt;BR /&gt;So far, modified template allows all titles and axis labels to fit.&amp;nbsp;&lt;BR /&gt;I'm using ENTRY statements as &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp; suggested for x-axis labels which challenges me to figure out the splitting point of long labels. Using %SUBSTR function I could split it, but it is also truncating whole words into pieces, unfortunately I couldn't figure out to split the string into whole word parts. Alternatively, I might add explicitly "separators" inside the labels and use %scan function or other options (splitchar maybe). But I'm not sure if this would be the (best) solution. Besides, I need to eliminate the "SGRENDER PROCEDURE" name&amp;nbsp; from the TOC.&amp;nbsp; In majority of SG procedures CONTENTS='' option drops proc names from TOC. It seems this option doesn't work for SGRENDER.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;Below I'm providing my actual code for readers review, and wonder anyone could suggest how to fix those 2 minor issues.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options  nodate nonumber ;
ods escapechar='~'; 
ODS rtf FILE = "&amp;amp;mypath\InterItem corr.rtf" contents=yes toc_data ;
	%macro items1(xitems=, yitems=)/minoperator; 
		%do x=1 %to 8; 
			%do y=1 %to 8; 
				%let xitem= %scan(&amp;amp;xitems, &amp;amp;x); 
				%let yitem= %scan(&amp;amp;yitems, &amp;amp;y); 
				%if &amp;amp;xitem ne &amp;amp;yitem %then %do; 
					ods proclabel="Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of &amp;amp;&amp;amp;&amp;amp;xitem and &amp;amp;&amp;amp;&amp;amp;yitem at Baseline"; 
					proc template;
						define statgraph label;
							begingraph;
								entrytitle halign=center "Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of &amp;amp;&amp;amp;&amp;amp;xitem and &amp;amp;&amp;amp;&amp;amp;yitem at Baseline"/ textattrs=( family="Arial" size=9pt weight=bold) halignCenter=Graph;
								layout gridded;
									layout overlay / xaxisopts=( type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 Integer=true ) display=(line ticks tickvalues) ) 
										y2axisopts=(labelFitPolicy=Split labelattrs=( family="Arial" size=9pt weight=normal)) 
										yaxisopts=( labelposition=datacenter Label="&amp;amp;&amp;amp;&amp;amp;yitem" labelattrs=( family="Arial" size=9pt weight=normal) labelFitPolicy=Split type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 Integer=true ) ) 
										y2axisopts=(labelFitPolicy=Split labelattrs=( family="Arial" size=9pt weight=normal));
						   				ScatterPlot X=&amp;amp;xitem Y=&amp;amp;yitem / subpixel=off jitter=auto primary=true NAME="SCATTER";
						   				ScatterPlot X=&amp;amp;xitem Y=&amp;amp;yitem / primary=true;
						  				RegressionPlot X=&amp;amp;xitem Y=&amp;amp;yitem / Lineattrs=( Color=CX000000 Thickness=2) Maxpoints=2;
									endlayout;
										entry "                  %qsubstr(&amp;amp;&amp;amp;&amp;amp;xitem, 1, 70)";
										entry "                  %qsubstr(&amp;amp;&amp;amp;&amp;amp;xitem, 71)";
								endlayout;
							endgraph;
						end;
					run;
					ods noproctitle; 
					proc sgrender data=items template=label;
					run;
					title;footnote; 
				%end; 
			%end; 
		%end; 
	%mend; 
	%items1(xitems=PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108, yitems= PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108);

ODS _all_ CLOSE;
ods html;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TOC.png" style="width: 845px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110359i64733F5575B267DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="TOC.png" alt="TOC.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plot.png" style="width: 813px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110360i07E0C9A1360C3345/image-size/large?v=v2&amp;amp;px=999" role="button" title="plot.png" alt="plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 03:03:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976296#M25683</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2025-10-03T03:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976297#M25684</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15130"&gt;@DanH_sas&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you so much for guidance, it was super helpful!&lt;BR /&gt;Good to know about ODS graphics axis label behaviors. While I'm still willing to work on your option 1 (still need to learn how to annotate and apply it), I just started from option 2 using hints from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;. I'm getting closer to desired result, but still need a little adjustments.&amp;nbsp; Above I've described those adjustments, so if you have any suggestions,&amp;nbsp; please let me know.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 03:11:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976297#M25684</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2025-10-03T03:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976298#M25685</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;for the suggestion. I'll try this trick on my SAS windowing environment.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 03:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976298#M25685</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2025-10-03T03:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976302#M25686</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321371"&gt;@A_Kh&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;for the detailed information. &lt;SPAN&gt;TMPLOUT="filename"&amp;nbsp;option was very useful. I could easily see my template options and modify them as needed.&amp;nbsp;&lt;BR /&gt;Alternatively, I might add explicitly "separators" inside the labels and use %scan function or other options (splitchar maybe). But I'm not sure if this would be the (best) solution.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Try adding a variable label to the basic example from before but use the SPLITCHAR= option with a character like * (asterisk was a default splitchar when I started using SAS in 1980's) and see how that changes the template. That may give you ideas.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that the split isn't only for controlling wrapping, sometimes it just makes sense to have a visual break and controlling where&amp;nbsp; with splitchar is one of the easier ways.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the SGRENDER option OBJECTLABEL="text string" and see if that changes the appearance of the Contents.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 05:34:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976302#M25686</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2025-10-03T05:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976314#M25687</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The little trick is using "0A"x character .&lt;/P&gt;
&lt;P&gt;But intesting thing is&amp;nbsp; character connecting operator “||” is not working here. I don't know why? I am using SAS OnDemand for Academic . Here is an example:&lt;/P&gt;
&lt;PRE&gt;data have; 
	set sashelp.class; 
	label age= "This variable has a very long label that" '0A'x "needs to be wrapped up in the y-axis of the graph"
			height= 'This variable has a very long label that' '0A'x 'needs to be wrapped up in the x-axis of the graph';
run; 

title font='Times New Roman' height=10pt j=c 'Correlation of Age and Height in Sashelp.class dataset';
ods graphics/imagefmt=png width=650px height=650px; 
proc sgplot data=have description='' noborder; 
	scatter x=height y=age;
	reg x=height y=age; 
run; &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The concatenation operator only works in character expressions.&amp;nbsp; The "implied" concatenation that you are using is not uncommon, title, footnote,&amp;nbsp; statements and in proc format.&lt;/P&gt;
&lt;P&gt;&lt;A style="font-family: inherit; background-color: #ffffff;" href="https://communities.sas.com/t5/SAS-Programming/Recoding-from-character-to-numeric-with-formats/m-p/26599#M4772" target="_self"&gt;https://communities.sas.com/t5/SAS-Programming/Recoding-from-character-to-numeric-with-formats/m-p/26599#M4772&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 12:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976314#M25687</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2025-10-03T12:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976317#M25688</link>
      <description>John.King,&lt;BR /&gt;Thanks for clarify this.&lt;BR /&gt;But I think SAS LOG should pop up a WARNING/ERROR message to let me know this syntax of code was NOT right.&lt;BR /&gt;But it give me nothing, therefore I thought this syntax of code was right.  Right?</description>
      <pubDate>Fri, 03 Oct 2025 13:24:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976317#M25688</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-10-03T13:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976346#M25689</link>
      <description>&lt;P&gt;OBJECTLABEL="" option did work.&amp;nbsp;&lt;BR /&gt;However couldn't get desired results with SPLITCHAR, which I assume due to misuse of the option. Instead, I went the easiest way for me, that is inserting a special character "#" into item labels and use %scan function for line breaks. It did give me the output I need.&amp;nbsp;&lt;BR /&gt;I leave the discussion open for a day or so to see if any new suggestions come up. In general, the question has been resolved with Community memebers help.&amp;nbsp;&lt;BR /&gt;Below is my final code.&amp;nbsp;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="plot.png" style="width: 696px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110368i672408A86E4BF8D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="plot.png" alt="plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let PFA0101	= PROMIS SF 8c - 'Are you able to bend down and #pick up clothing from the floor?' item;
%let PFA0102	= PROMIS SF 8c - 'Are you able to stand up from an armless straight chair?' item#;
%let PFA0103	= PROMIS SF 8c - 'Are you able to dress yourself, #including tying shoelaces and buttoning your clothes?' item; 
%let PFA0104	= PROMIS SF 8c - 'Are you able to go up and down stairs at a normal pace?' item#;
%let PFA0105	= PROMIS SF 8c - 'Are you able to wash and dry your body?' item#; 
%let PFA0106	= PROMIS SF 8c - 'Are you able to go for a walk of at least 15 minutes?' item#;
%let PFA0107	= PROMIS SF 8c - 'Does your health now limit you in doing vigorous activities, #such as running, lifting heavy objects, participating in strenuous sports?' item;
%let PFA0108	= PROMIS SF 8c - 'How much difficulty do you have doing your daily physical activities #because of your health?' item;


options nodate nonumber ;
ODS rtf FILE = "&amp;amp;mypath\InterItem corr_Test.rtf" contents=yes toc_data ;
	%macro items1(xitems=, yitems=)/minoperator; 
		%do x=1 %to 8; 
			%do y=1 %to 8; 
				%let xitem= %scan(&amp;amp;xitems, &amp;amp;x); 
				%let yitem= %scan(&amp;amp;yitems, &amp;amp;y); 
				%if &amp;amp;xitem ne &amp;amp;yitem %then %do; 
					ods proclabel="Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of %sysfunc(tranwrd(&amp;amp;&amp;amp;&amp;amp;xitem, #, %str())) and %sysfunc(tranwrd(&amp;amp;&amp;amp;&amp;amp;yitem, #, %str())) at Baseline"; 
					proc template;
						define statgraph label;
							begingraph;
								entrytitle halign=center "Figure 1.&amp;amp;x..&amp;amp;y: Inter-Item correlation of %sysfunc(tranwrd(&amp;amp;&amp;amp;&amp;amp;xitem, #, %str())) and %sysfunc(tranwrd(&amp;amp;&amp;amp;&amp;amp;yitem, #, %str())) at Baseline"/ textattrs=( family="Arial" size=9pt weight=bold) halignCenter=Graph;
								layout gridded;
									layout overlay / xaxisopts=( type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 Integer=true ) display=(line ticks tickvalues) ) 
										y2axisopts=(labelfitpolicy=split labelattrs=( family="arial" size=9pt weight=normal)) 
										yaxisopts=( labelposition=datacenter label="%sysfunc(tranwrd(&amp;amp;&amp;amp;&amp;amp;yitem, #, %str()))" labelattrs=( family="arial" size=9pt weight=normal) labelfitpolicy=split type=linear linearopts=( tickvaluelist=( 1 2 3 4 5 ) viewmin=1 viewmax=5 integer=true ) ) 
										y2axisopts=(labelfitpolicy=split labelattrs=( family="arial" size=9pt weight=normal));
						   				scatterplot x=&amp;amp;xitem y=&amp;amp;yitem / subpixel=off jitter=auto primary=true name="scatter";
						   				scatterplot x=&amp;amp;xitem y=&amp;amp;yitem / primary=true;
						  				regressionplot x=&amp;amp;xitem y=&amp;amp;yitem / lineattrs=( color=cx000000 thickness=2) maxpoints=2;
									endlayout;
										entry "                  %scan(&amp;amp;&amp;amp;&amp;amp;xitem, 1, %str(#))";
										entry "                   %scan(&amp;amp;&amp;amp;&amp;amp;xitem, 2, %str(#))";
								endlayout;
							endgraph;
						end;
					run;
					ods noptitle; 
					proc sgrender data=items OBJECTLABEL="" template=label;
					run;
					title;footnote; 
				%end; 
			%end; 
		%end; 
	%mend; 
	%items1(xitems=PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108, yitems= PFA0101 PFA0102 PFA0103 PFA0104 PFA0105 PFA0106 PFA0107 PFA0108);
ods _all_ close;
ods html;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 16:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976346#M25689</guid>
      <dc:creator>A_Kh</dc:creator>
      <dc:date>2025-10-03T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976359#M25690</link>
      <description>&lt;P&gt;You don't get an error because it is not an error.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;John.King,&lt;BR /&gt;Thanks for clarify this.&lt;BR /&gt;But I think SAS LOG should pop up a WARNING/ERROR message to let me know this syntax of code was NOT right.&lt;BR /&gt;But it give me nothing, therefore I thought this syntax of code was right. Right?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Oct 2025 17:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976359#M25690</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2025-10-03T17:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976399#M25691</link>
      <description>John.King,&lt;BR /&gt;But concatenation operator || would appear in graph. Wouldn't it get you a surprise ?</description>
      <pubDate>Sat, 04 Oct 2025 01:42:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976399#M25691</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-10-04T01:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976403#M25692</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;John.King,&lt;BR /&gt;But concatenation operator || would appear in graph. Wouldn't it get you a surprise ?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Because at that point || is not an operator, it just another unquoted set of characters to add to the label.&amp;nbsp; Just like if I used other "operators" as part of the label.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have; 
  set sashelp.class (obs=1);
  label age= 'Word one' two 'three four' five 
        sex= + | &amp;amp; and or ||
  ;
run; 

proc print label;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1759586748444.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/110407iE48B268C9046509D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1759586748444.png" alt="Tom_0-1759586748444.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Oct 2025 14:05:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976403#M25692</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-04T14:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976413#M25693</link>
      <description>Tom,&lt;BR /&gt;Yes. I understood. But don't you think it is weird ? The syntax looks like so chaoes . And why need to put single/double quote around it ?</description>
      <pubDate>Sun, 05 Oct 2025 01:28:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976413#M25693</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-10-05T01:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976414#M25694</link>
      <description>&lt;P&gt;I take it as a side effect of SAS's desired to maintain backwards compatibility.&amp;nbsp; Quotes weren't required before, so they still aren't.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The syntax for the LABEL statement is LABEL followed by zero or more NAME = LABEL pairs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that you do need quotes when not having them would change how the statement is interpreted (parsed?).&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example if I had wanted a label with an equal sign in it.&amp;nbsp; For example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;label sex= 'M=Male F=Female' ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If I remove the quotes&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;label sex= M=Male F=Female;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and try it the SAS log will show:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: Variable M is uninitialized.
NOTE: Variable F is uninitialized.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Because now I have three name=label clauses instead of one.&lt;/P&gt;
&lt;P&gt;But if the thing before the = is not valid as name&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;label age=11=low 14=high;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;then it works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that where I see this syntax quirk used more often is in PROC FORMAT steps.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format fmtlib ;
value $sex M=Male F=Female;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 05 Oct 2025 02:55:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976414#M25694</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-10-05T02:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: GTL - How to allocate more space for titles and axis labels to avoid truncation.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976456#M25695</link>
      <description>Tom,&lt;BR /&gt;OK. I see now.</description>
      <pubDate>Mon, 06 Oct 2025 11:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GTL-How-to-allocate-more-space-for-titles-and-axis-labels-to/m-p/976456#M25695</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-10-06T11:42:06Z</dc:date>
    </item>
  </channel>
</rss>

