<?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: Outline close orientation for column switcher issue in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752209#M93365</link>
    <description>&lt;P&gt;I think this does require some scripting. You can go the "maybe works" way of using JMP's property viewer to get a reference and then set your close orientation&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1714975523842.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63949iFED2B50EF7E3DECC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1714975523842.png" alt="jthi_0-1714975523842.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or use XPath (which I would most likely always use) to get the references to&amp;nbsp;ColumnSwitcherContextOutlineBox (? OutlineBox would be much nicer) and then send messages to those as needed.&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");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(525, 454),
	Show Control Panel(0),
	Variables(X(:weight), Y(:height), Overlay(:sex)),
	Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11))),
	Column Switcher(:sex, {:name, :sex}),
	Column Switcher(:weight, {:age, :weight})
);

obs = (gb &amp;lt;&amp;lt; top parent) &amp;lt;&amp;lt; XPath("//ColumnSwitcherContextOutlineBox");
obs &amp;lt;&amp;lt; Close(1);

wait(1);
obs &amp;lt;&amp;lt; Outline Close Orientation("Horizontal");
// obs &amp;lt;&amp;lt; Outline Close Orientation("Vertical");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In some cases you might need to modify the XPath query to work but in this simple case using JMP17.2 this did work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Might be worth sending message to support so that would also be recorded as part of column switcher like Jim did mention.&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 06 May 2024 06:15:31 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-05-06T06:15:31Z</dc:date>
    <item>
      <title>Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752174#M93356</link>
      <description>&lt;P&gt;I have a graph builder chart where I have multiple column switchers&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_0-1714959418533.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63943i088582B30AD18767/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_0-1714959418533.png" alt="shampton82_0-1714959418533.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've set their orientation to horizontal by right clicking on the maximize/minimize arrow and selecting this for each one:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_1-1714959453989.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63944iAFCC2A63D5D02817/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_1-1714959453989.png" alt="shampton82_1-1714959453989.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the script for this customization is not retained when I save the chart script for later use.&amp;nbsp; I see that there is this option in the scripting index:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_2-1714959586246.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63945i8C445B24496298A6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_2-1714959586246.png" alt="shampton82_2-1714959586246.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but not sure how to apply it to just the column switchers (don't want it applied to the local data filter).&amp;nbsp; Thanks for any suggestions!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 01:42:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752174#M93356</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2024-05-06T01:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752186#M93357</link>
      <description>&lt;P&gt;Here is a simple example&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1714963206922.png" style="width: 666px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63946iFB5E1DDB327E47CB/image-dimensions/666x443?v=v2" width="666" height="443" role="button" title="txnelson_0-1714963206922.png" alt="txnelson_0-1714963206922.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);

// Open Data Table: semiconductor capability.jmp
// → Data Table( "semiconductor capability" )
Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP1 ), Y( :NPN1 ) ),
	Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) ),
	Local Data Filter(
		Add Filter( columns( :SITE ), Display( :SITE, N Items( 5 ) ) )
	),
	Column Switcher(
		:NPN1,
		{:NPN1, :NPN2, :PNP3},
		Title( "Switcher A" ),
		Close Outline( 1 )
	),
	Column Switcher(
		:PNP1,
		{:PNP1, :PNP3, :IVP1, :PNP4},
		Title( "Switcher B" ),
		Close Outline( 1 )
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 02:41:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752186#M93357</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-06T02:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752189#M93358</link>
      <description>&lt;P&gt;Hey Jim,&lt;/P&gt;&lt;P&gt;Thanks for the quick response!&amp;nbsp; I tired out your supplied script and it doesn't appear to get me where I wanted to go so let me show you how I modified the chart your script produced.&amp;nbsp; I'd like to have the chart open like this vs the default vertical orientation:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_0-1714965592304.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63947iE5C4297EF2F2DD4E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_0-1714965592304.png" alt="shampton82_0-1714965592304.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Which I changed by the method shown in my first post on right clicking this guy&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shampton82_1-1714965664565.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63948i21787A290E5AD00C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="shampton82_1-1714965664565.png" alt="shampton82_1-1714965664565.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;and changing the close orientation.&amp;nbsp; However, this is not recorded in the script so if I hit redo or save the script out and rerun it later I will get the vertical alignment again and have to manually change it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this makes the ask clearer!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 03:22:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752189#M93358</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2024-05-06T03:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752202#M93361</link>
      <description>&lt;P&gt;I am not aware of a solution.&amp;nbsp; This does seem to be a bug that needs to be given to the JMP Support folks.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe another Community member will have ananswer.&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 04:12:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752202#M93361</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-06T04:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752208#M93364</link>
      <description>&lt;P&gt;I miss this feature in Dashboard Builder.&lt;BR /&gt;After adjusting the Layout, the next time the Dashboard will again open with standard settings.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I added this topic to the collection:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Actions-missed-by-Advanced-Log-Workflow-Builder/m-p/752207/highlight/true#M93363" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Actions-missed-by-Advanced-Log-Workflow-Builder/m-p/752207/highlight/true#M93363&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 06:14:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752208#M93364</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-06T06:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752209#M93365</link>
      <description>&lt;P&gt;I think this does require some scripting. You can go the "maybe works" way of using JMP's property viewer to get a reference and then set your close orientation&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1714975523842.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/63949iFED2B50EF7E3DECC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1714975523842.png" alt="jthi_0-1714975523842.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or use XPath (which I would most likely always use) to get the references to&amp;nbsp;ColumnSwitcherContextOutlineBox (? OutlineBox would be much nicer) and then send messages to those as needed.&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");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(525, 454),
	Show Control Panel(0),
	Variables(X(:weight), Y(:height), Overlay(:sex)),
	Elements(Points(X, Y, Legend(9)), Line Of Fit(X, Y, Legend(11))),
	Column Switcher(:sex, {:name, :sex}),
	Column Switcher(:weight, {:age, :weight})
);

obs = (gb &amp;lt;&amp;lt; top parent) &amp;lt;&amp;lt; XPath("//ColumnSwitcherContextOutlineBox");
obs &amp;lt;&amp;lt; Close(1);

wait(1);
obs &amp;lt;&amp;lt; Outline Close Orientation("Horizontal");
// obs &amp;lt;&amp;lt; Outline Close Orientation("Vertical");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In some cases you might need to modify the XPath query to work but in this simple case using JMP17.2 this did work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Might be worth sending message to support so that would also be recorded as part of column switcher like Jim did mention.&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 06:15:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752209#M93365</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-06T06:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752227#M93368</link>
      <description>&lt;P&gt;If they work on this topic ... other custom Report settings are also missed by Enhanced log / Workflow Builder / Dashboard Builder, like this one:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Size( 576, 529 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Column Switcher( :sex, {:age, :sex} )
);

current Report()[ColumnSwitcherContextListBox(1)] &amp;lt;&amp;lt; set horizontal(0);

MissingHorizontalSetting =(Current Report()[Outline Box( 1 )] &amp;lt;&amp;lt; Get Scriptable Object()) &amp;lt;&amp;lt; get script()&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2024 07:02:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752227#M93368</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-06T07:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752536#M93407</link>
      <description>&lt;P&gt;just a general comment on the discussion here, if something does seem to be a bug to you or is not within the product but would be nice to have included, please:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;send an email in addition to the community post to &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;&amp;nbsp;(including the link to the community post)&lt;/LI&gt;
&lt;LI&gt;add a &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_blank" rel="noopener"&gt;JMP Wish List&lt;/A&gt;&amp;nbsp; entry with the reason why this will be important to be added &lt;BR /&gt;(or check there if your wish is already there and kudo)&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 08:53:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752536#M93407</guid>
      <dc:creator>martindemel</dc:creator>
      <dc:date>2024-05-07T08:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752546#M93410</link>
      <description>&lt;P&gt;Ok, good idea.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the wish:&amp;nbsp;&lt;LI-MESSAGE title="grab more report settings via Enhanced Log / Workflow Builder" uid="752540" url="https://community.jmp.com/t5/JMP-Wish-List/grab-more-report-settings-via-Enhanced-Log-Workflow-Builder/m-p/752540#U752540" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;(TS-00142187)&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 09:11:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752546#M93410</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-07T09:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752664#M93422</link>
      <description>&lt;P&gt;To clarify&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2742"&gt;@martindemel&lt;/a&gt;'s comment, if you believe it is a bug, please contact &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;.&amp;nbsp; If what you want is not within the product but would be nice to have included, add or kudo a &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt; entry.&amp;nbsp; Please do not do both.&amp;nbsp; All requests should be routed through the Wish List.&amp;nbsp; All bugs should be routed through JMP support.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 14:55:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752664#M93422</guid>
      <dc:creator>Jasean</dc:creator>
      <dc:date>2024-05-07T14:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752667#M93423</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1643"&gt;@Jasean&lt;/a&gt;&amp;nbsp;for the clarification.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For me it's hard to judge if it's a bug that the Outline Close Orientation&amp;nbsp; and Horizontal(1/0) setting is missed by the Enhanced log - or if it's a new feature which should be added.&lt;/P&gt;&lt;P&gt;I would bet it's a bug - but I lost many similar bets ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's see which reply we will get from JMP support.&lt;/P&gt;&lt;P&gt;If it's a bug I will indicate it in the wish such that it can be closed.&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 15:07:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752667#M93423</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-07T15:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752668#M93424</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;.&amp;nbsp; I can appreciate that it is difficult to know sometimes.&amp;nbsp; In those cases, I suggest contacting JMP Technical Support.&amp;nbsp; If it is not a bug, the support member will refer you to the Wish List.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 07 May 2024 15:29:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752668#M93424</guid>
      <dc:creator>Jasean</dc:creator>
      <dc:date>2024-05-07T15:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752802#M93441</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;Jmp Support treats it as a "request", so the entry in the wish list can stay&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;edit: see below&lt;/P&gt;&lt;P&gt;:)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 05:40:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752802#M93441</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-08T05:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752804#M93442</link>
      <description>&lt;P&gt;Ah, sorry, now it's considered a bug:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I believe this is a bug.&amp;nbsp; It turns out the outline box used for the column switcher is a different object than the "usual" outline box.&amp;nbsp; This particular object is not documented in the SI.&amp;nbsp; Additionally, while not everything is currently captured by the action recorder, the goal is to have it so.&amp;nbsp; In this case, the action recorder is not capturing that the orientation should be horizontal.&amp;nbsp; I will create a bug report for development to &lt;/EM&gt;&lt;STRONG&gt;have these two items addressed in a future release.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 05:39:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/752804#M93442</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-08T05:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Outline close orientation for column switcher issue</title>
      <link>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/753393#M93519</link>
      <description>&lt;P&gt;That will work!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modified the script to be more flexible and ended up with this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

gb =current report()["Graph Builder"]&amp;lt;&amp;lt; get scriptable object;

obs = (gb &amp;lt;&amp;lt; top parent) &amp;lt;&amp;lt; XPath("//ColumnSwitcherContextOutlineBox");
obs &amp;lt;&amp;lt; Close(1);

wait(1);
obs &amp;lt;&amp;lt; Outline Close Orientation("Horizontal");
// obs &amp;lt;&amp;lt; Outline Close Orientation("Vertical");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks Jarmo!&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 03:08:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Outline-close-orientation-for-column-switcher-issue/m-p/753393#M93519</guid>
      <dc:creator>shampton82</dc:creator>
      <dc:date>2024-05-10T03:08:10Z</dc:date>
    </item>
  </channel>
</rss>

