<?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: Table Column Headers - possible to make vertical? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248296#M48736</link>
    <description>&lt;P&gt;Not as far as I can tell.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Feb 2020 16:26:04 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2020-02-19T16:26:04Z</dc:date>
    <item>
      <title>Table Column Headers - possible to make vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248289#M48734</link>
      <description>&lt;P&gt;Hi, Is there any way&amp;nbsp;to change a&amp;nbsp;table report's column headers from horizontal to&amp;nbsp;vertical alignment?&amp;nbsp; (like Excel can)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;For example, working with a dt with a &amp;lt;&amp;lt;Get As Report or working with a Tablebox() with associated String Col Box() and Number Col Box() commands.&amp;nbsp; If possible, this would save a ton of space for viewing purposes on larger tables. (i.e. saving the table report as a PNG, etc)&lt;BR /&gt;Else, column headers tend to wrap the table way too much to the right making it more difficult to view. (while the value contents have a ton of white space so condensing them is fine)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks, DJ&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:54:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248289#M48734</guid>
      <dc:creator>djhanson</dc:creator>
      <dc:date>2020-02-19T15:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table Column Headers - possible to make vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248296#M48736</link>
      <description>&lt;P&gt;Not as far as I can tell.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 16:26:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248296#M48736</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-02-19T16:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table Column Headers - possible to make vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248959#M48878</link>
      <description>&lt;P&gt;I'm pretty sure the answer is no too, and here's why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you run this script, you'll get a list of properties and none of them can be set to vertical orientation.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt &amp;lt;&amp;lt; Select Where( :Age &amp;lt; 14 );
dt &amp;lt;&amp;lt; Select Columns( :name, :age, :height );
jmp_report = New Window( "Big Class",
	Text Box( "Big Class" ),
	H List Box( Outline Box( "Big Class", dt &amp;lt;&amp;lt; Get As Report ) ),
);
jmp_report&amp;lt;&amp;lt;get properties;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If this is bad news, head over to the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;wish list&lt;/A&gt; and make a suggestion&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively, just transpose the table to get this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-02-24 at 11.47.37 AM.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/21882iED879E64A8DC3385/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-02-24 at 11.47.37 AM.png" alt="Screen Shot 2020-02-24 at 11.47.37 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp",invisible );
Column( dt, "height" ) &amp;lt;&amp;lt; set name(
	"Super long column name that tends to cause trouble"
);
Column( dt, "weight" ) &amp;lt;&amp;lt; set name(
	"Terrible, horrible, no-good, very bad long column name"
);
dtsub = dt &amp;lt;&amp;lt; Subset(
	Selected Rows( 0 ),
	Rows( [1, 2, 3, 4, 5, 6, 7, 8] ),
	Selected columns only( 0 ),invisible
);close(dt,nosave);
dtsubxp = dtsub &amp;lt;&amp;lt; Transpose(
	columns( Column( 4 ), Column( 5 ) ),
	Label( :name ),
	Label column name( "name" ),
	Output Table( "Transpose of Subset of Big Class" )
);close(dtsub,nosave);

Column( dtsubxp, 1 ) &amp;lt;&amp;lt; Set Display Width( 440 );
obj = dtsubxp &amp;lt;&amp;lt; get as report;
dtsubxp &amp;lt;&amp;lt; journal;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Feb 2020 16:48:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Table-Column-Headers-possible-to-make-vertical/m-p/248959#M48878</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2020-02-24T16:48:34Z</dc:date>
    </item>
  </channel>
</rss>

