<?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: How to get rid of unnecessary &amp;quot;Variability Gauge&amp;quot; OutlineBox in Variability Chart? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-get-rid-of-unnecessary-quot-Variability-Gauge-quot/m-p/494842#M73385</link>
    <description>&lt;P&gt;Hmmm... As usual, as soon as I post the question, I find the answer. Or at least looks like this should work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;subrvc in the script above is actually not a DisplayBox[OutlineBox], it's an array of them with only one element.&lt;/P&gt;&lt;P&gt;So all I need to do is change script like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;lb2 = Lineup Box( N Col( 2 ) );
	For Each( {rvc, index}, vc &amp;lt;&amp;lt; Report, 
		subrvc = rvc &amp;lt;&amp;lt; XPath("/OutlineBox/OutlineBox");
		lb2 &amp;lt;&amp;lt; Append( subrvc[1]/*THIS HERE!*/  );
);

rw2 = New Window( "To Save PPTX", Show Menu( 0 ), Show Toolbars( 0 ), Outline Box("Heading for PPTX", lb2 &amp;lt;&amp;lt; Get Picture));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 27 May 2022 19:53:01 GMT</pubDate>
    <dc:creator>miguello</dc:creator>
    <dc:date>2022-05-27T19:53:01Z</dc:date>
    <item>
      <title>How to get rid of unnecessary "Variability Gauge" OutlineBox in Variability Chart?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-rid-of-unnecessary-quot-Variability-Gauge-quot/m-p/494821#M73384</link>
      <description>&lt;P&gt;All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need help with Display Boxes today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm forming a report that I will later save in PPTX for the customer.&lt;/P&gt;&lt;P&gt;Since I want to group several plots on one slide I form an OutlineBox with the text that I want to be the header on the slide and then place a picture of the plots I need into that Outline Box. In parallel, I also display that in a separate window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the example script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

vc = Variability Chart(
	Y( :height, weight ),
	X( :sex ),
	Connect Cell Means( 1 ),
	Std Dev Chart( 0 ),
	Points Jittered( 1 )
);

lb = Lineup Box( N Col( 2 ) );
	For Each( {rvc, index}, vc &amp;lt;&amp;lt; Report, 
		lb &amp;lt;&amp;lt; Append( rvc  );
);
vc &amp;lt;&amp;lt; Close Window;

nw = New Window( "Variability Report", Show Menu( 0 ), Show Toolbars( 0 ), lb );
rw = New Window( "To Save PPTX", Show Menu( 0 ), Show Toolbars( 0 ), Outline Box("Heading for PPTX", lb &amp;lt;&amp;lt; Get Picture));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here &lt;EM&gt;nw&lt;/EM&gt; is the window that I see, and &lt;EM&gt;rw&lt;/EM&gt; is the window with pictures that will get exported to PPTX.&lt;/P&gt;&lt;P&gt;Now, when I do variability plots, I have them wrapped in this outline box that just says "Variability Gauge".&amp;nbsp;You see that both windows have it. How do I get rid of it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to extract the inner Outline Box like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;lb2 = Lineup Box( N Col( 2 ) );
	For Each( {rvc, index}, vc &amp;lt;&amp;lt; Report, 
		subrvc = rvc &amp;lt;&amp;lt; XPath("/OutlineBox/OutlineBox");
		lb2 &amp;lt;&amp;lt; Append( subrvc  );
);

rw2 = New Window( "To Save PPTX", Show Menu( 0 ), Show Toolbars( 0 ), Outline Box("Heading for PPTX", lb2 &amp;lt;&amp;lt; Get Picture));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but I cannot append &lt;EM&gt;subrvc&lt;/EM&gt; (the inner outline box) to my LineUp Box:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Not a display in access or evaluation of 'Append' , Append( subrvc ) /*###*/&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any way to get rid of that outline box? Maybe wrap my plot in something that IS a display, but is essentially invisible? I tried Broder Box but it did not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;M&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;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:00:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-rid-of-unnecessary-quot-Variability-Gauge-quot/m-p/494821#M73384</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2023-06-09T17:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of unnecessary "Variability Gauge" OutlineBox in Variability Chart?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-rid-of-unnecessary-quot-Variability-Gauge-quot/m-p/494842#M73385</link>
      <description>&lt;P&gt;Hmmm... As usual, as soon as I post the question, I find the answer. Or at least looks like this should work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;subrvc in the script above is actually not a DisplayBox[OutlineBox], it's an array of them with only one element.&lt;/P&gt;&lt;P&gt;So all I need to do is change script like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;lb2 = Lineup Box( N Col( 2 ) );
	For Each( {rvc, index}, vc &amp;lt;&amp;lt; Report, 
		subrvc = rvc &amp;lt;&amp;lt; XPath("/OutlineBox/OutlineBox");
		lb2 &amp;lt;&amp;lt; Append( subrvc[1]/*THIS HERE!*/  );
);

rw2 = New Window( "To Save PPTX", Show Menu( 0 ), Show Toolbars( 0 ), Outline Box("Heading for PPTX", lb2 &amp;lt;&amp;lt; Get Picture));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 19:53:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-rid-of-unnecessary-quot-Variability-Gauge-quot/m-p/494842#M73385</guid>
      <dc:creator>miguello</dc:creator>
      <dc:date>2022-05-27T19:53:01Z</dc:date>
    </item>
  </channel>
</rss>

