<?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: remove subplot titles in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554874#M76944</link>
    <description>&lt;P&gt;I also noticed the "wrap" boxes - same size as a single-line standard box.&lt;BR /&gt;So, it helps a bit if the titles are really long and span over multiple lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hm, tearing apart the plot and manually combining all boxes except the subplot titles could be an option ...&lt;BR /&gt;Perhaps as a universal button on the toolbar :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;On the other hand, I really love to optimize a plot, click on "Save Script/To Database" and be sure that I can recreate the plot as it was.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Surprising that hide and collapse don't do what they could do ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I opened a post with the wish to delete "wrap" subplot titles:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/function-to-delete-subplot-titles-orany-GraphBuilderGroupBox-in/idi-p/554858" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/function-to-delete-subplot-titles-orany-GraphBuilderGroupBox-in/idi-p/554858&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;a related wish: Function to adjusting the size of the titles:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HolgerSp_0-1665493463584.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46177iAA1AE9F68E189DC7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HolgerSp_0-1665493463584.png" alt="HolgerSp_0-1665493463584.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Nov 2022 10:23:25 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2022-11-02T10:23:25Z</dc:date>
    <item>
      <title>remove subplot titles</title>
      <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554413#M76909</link>
      <description>&lt;P&gt;I want to get rid of subplot titles to get more space for the plots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hm, GraphBuilderGroupBoxes - quite&amp;nbsp;&lt;SPAN&gt;&lt;EM&gt;uncooperative,&lt;/EM&gt; as mentioned before :)&lt;/img&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Identifying-Titles-of-Graph-Builder-Page-Titles/m-p/426380/highlight/true#M67622" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Identifying-Titles-of-Graph-Builder-Page-Titles/m-p/426380/highlight/true#M67622&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/GraphBuilderGroupBox-lt-lt-Get-Window-Title-issue/m-p/423554" target="_blank"&gt;https://community.jmp.com/t5/Discussions/GraphBuilderGroupBox-lt-lt-Get-Window-Title-issue/m-p/423554&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems that just the collapse and delete commands trigger some action, but even they don't help with the space consumption.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Airline Delays.jmp" );

dt &amp;lt;&amp;lt; minimize window( 1 );

gb = Graph Builder(
	Size( 916, 659 ),
	Show Control Panel( 0 ),
	Graph Spacing( 5 ),
	Variables( X( :Day of Month ), Y( :Month ), Group Y( :Distance ), Wrap( :Airline ), Color( :Arrival Delay ) ),
	Elements( Heatmap( X, Y, Legend( 5 ) ) )
);

gbb = Report( gb )[Graph Builder Box( 1 )];
Boxes = gbb &amp;lt;&amp;lt; xpath( "//GraphBuilderGroupBox" );

New Window( "wait ...", &amp;lt;&amp;lt;Modal, V List Box( Text Box( "select (?!?) the titles?" ), Button Box( "OK" ) ) );

For Each( {myBox, idx}, boxes, myBox &amp;lt;&amp;lt; Select );

New Window( "wait ...", &amp;lt;&amp;lt;Modal, V List Box( Text Box( "hide (?!?) the titles?" ), Button Box( "OK" ) ) );

For Each( {myBox, idx}, boxes, myBox &amp;lt;&amp;lt; Set Property( "Visibility", "Hidden" ) );

New Window( "wait ...", &amp;lt;&amp;lt;Modal, V List Box( Text Box( "collapse the titles?" ), Button Box( "OK" ) ) );

For Each( {myBox, idx}, boxes, myBox &amp;lt;&amp;lt; Set Property( "Visibility", "Collapse" ) );

New Window( "wait ...", &amp;lt;&amp;lt;Modal, V List Box( Text Box( "show the titles?" ), Button Box( "OK" ) ) );

For Each( {myBox, idx}, boxes, myBox &amp;lt;&amp;lt; Set Property( "Visibility", "Visible" ) );


New Window( "wait ...", &amp;lt;&amp;lt;Modal, V List Box( Text Box( "delete the titles?" ), Button Box( "OK" ) ) );

For Each( {myBox, idx}, boxes, myBox &amp;lt;&amp;lt; delete );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:28:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554413#M76909</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-11T11:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: remove subplot titles</title>
      <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554811#M76938</link>
      <description>&lt;P&gt;linked topic:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Reduce-font-size-for-wrapped-graph-builder-headings/m-p/6797#U6797" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Reduce-font-size-for-wrapped-graph-builder-headings/m-p/6797#U6797&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638#U116638" target="_blank"&gt;https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638#U116638&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 10:14:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554811#M76938</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-10-11T10:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: remove subplot titles</title>
      <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554850#M76943</link>
      <description>&lt;P&gt;There does not seem to be a way to delete the subgroup area.&amp;nbsp; Even deleting it, forces a group to be displayed with the title, "Wrap".&lt;/P&gt;
&lt;P&gt;The only way that I can see that you could do what you want, is to create a new window, and copy just the frame boxes and the axis boxes from the original graph, to the new window.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Oct 2022 12:31:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554850#M76943</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-10-11T12:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: remove subplot titles</title>
      <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554874#M76944</link>
      <description>&lt;P&gt;I also noticed the "wrap" boxes - same size as a single-line standard box.&lt;BR /&gt;So, it helps a bit if the titles are really long and span over multiple lines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hm, tearing apart the plot and manually combining all boxes except the subplot titles could be an option ...&lt;BR /&gt;Perhaps as a universal button on the toolbar :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;On the other hand, I really love to optimize a plot, click on "Save Script/To Database" and be sure that I can recreate the plot as it was.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Surprising that hide and collapse don't do what they could do ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I opened a post with the wish to delete "wrap" subplot titles:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/function-to-delete-subplot-titles-orany-GraphBuilderGroupBox-in/idi-p/554858" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/function-to-delete-subplot-titles-orany-GraphBuilderGroupBox-in/idi-p/554858&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;a related wish: Function to adjusting the size of the titles:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Wish-List/Right-click-to-change-Group-font-and-font-size/idi-p/116638&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HolgerSp_0-1665493463584.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/46177iAA1AE9F68E189DC7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HolgerSp_0-1665493463584.png" alt="HolgerSp_0-1665493463584.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 10:23:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/554874#M76944</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-11-02T10:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: remove subplot titles</title>
      <link>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/563271#M77627</link>
      <description>&lt;P&gt;From &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/494"&gt;@XanGregg&lt;/a&gt;&amp;nbsp;'s Discovery Summit Talk&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discovery-Summit-2014/Unlocking-the-Power-of-Graph-Builder/ta-p/22134" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discovery-Summit-2014/Unlocking-the-Power-of-Graph-Builder/ta-p/22134&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I learned that one can&amp;nbsp;resize the subplot tiltes by dragging (~ 24min) - but the minimum size is still quite big.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fortunately, via JSL one can do even better. The magic is done by the option&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Size( xx )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;of the &lt;STRONG&gt;Wrap&lt;/STRONG&gt; command.&lt;/P&gt;&lt;P&gt;By dragging with the mouse, one can decrease it to 10, in JSL one can set it to 1 :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Airline Delays.jmp" );

dt &amp;lt;&amp;lt; minimize window( 1 );

gb = Graph Builder(
	Show Control Panel( 0 ),
	Graph Spacing( 5 ),
	Variables(
		X( :Day of Month ),
		Y( :Month ),
		Group Y( :Distance ),
		Wrap( :Airline, Size( 1 ) ),
		Color( :Arrival Delay )
	),
	Elements( Heatmap( X, Y, Legend( 5 ) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 21:22:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/remove-subplot-titles/m-p/563271#M77627</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2022-11-02T21:22:47Z</dc:date>
    </item>
  </channel>
</rss>

