<?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 How can I output the graph in the same window as the button? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795572#M97203</link>
    <description>&lt;DIV&gt;&lt;SPAN class=""&gt;When I write the command to output the graph in the button, it actually outputs in a new window. What should I do to output the graph in the same window (as shown in the figure below)?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BabyDoragon_0-1725531492325.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/67972iFC7B38CE5D40AF82/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BabyDoragon_0-1725531492325.png" alt="BabyDoragon_0-1725531492325.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw2 = New Window( "New window",
	outputG = Button Box( "Output Graph",
		Outline Box( "Graph Output", 
		Bivariate( y( :weight ), x( :height ) ); )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 05 Sep 2024 10:19:42 GMT</pubDate>
    <dc:creator>BabyDoragon</dc:creator>
    <dc:date>2024-09-05T10:19:42Z</dc:date>
    <item>
      <title>How can I output the graph in the same window as the button?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795572#M97203</link>
      <description>&lt;DIV&gt;&lt;SPAN class=""&gt;When I write the command to output the graph in the button, it actually outputs in a new window. What should I do to output the graph in the same window (as shown in the figure below)?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BabyDoragon_0-1725531492325.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/67972iFC7B38CE5D40AF82/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BabyDoragon_0-1725531492325.png" alt="BabyDoragon_0-1725531492325.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw2 = New Window( "New window",
	outputG = Button Box( "Output Graph",
		Outline Box( "Graph Output", 
		Bivariate( y( :weight ), x( :height ) ); )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 Sep 2024 10:19:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795572#M97203</guid>
      <dc:creator>BabyDoragon</dc:creator>
      <dc:date>2024-09-05T10:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I output the graph in the same window as the button?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795583#M97205</link>
      <description>&lt;P&gt;You could collect them into some display element&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
nw2 = New Window("New window",
	outputG = Button Box("Output Graph",
		vlb &amp;lt;&amp;lt; Append(Outline Box("Graph Output", Bivariate(y(:weight), x(:height))))
	),
	vlb = V List Box()
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Sep 2024 10:25:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795583#M97205</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-09-05T10:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: How can I output the graph in the same window as the button?</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795585#M97207</link>
      <description>&lt;P&gt;The objects created when the button box is clicked need to be appended back to the window.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw2 = New Window( "New window",
	outputG = Button Box( "Output Graph",
		ob = Outline Box( "Graph Output",
			Bivariate( y( :weight ), x( :height ) )
		);
		nw2 &amp;lt;&amp;lt; append( ob );
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Sep 2024 10:33:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-I-output-the-graph-in-the-same-window-as-the-button/m-p/795585#M97207</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-09-05T10:33:21Z</dc:date>
    </item>
  </channel>
</rss>

