<?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: Box size of Graph builder plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/425044#M67440</link>
    <description>&lt;P&gt;How do I resize an existing graph with this script?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sun, 10 Oct 2021 08:27:20 GMT</pubDate>
    <dc:creator>ezorlo</dc:creator>
    <dc:date>2021-10-10T08:27:20Z</dc:date>
    <item>
      <title>Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327131#M57636</link>
      <description>&lt;P&gt;Is there a way I can specify box size for a graph builder plot? See highlighted image below. Box size does not include the axis label sizes. I want to make multiple plots with same box size. Frame size considers the size of the whole frame and not the box.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pankajsync_0-1603831630111.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27772i7524D88941F33580/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pankajsync_0-1603831630111.png" alt="pankajsync_0-1603831630111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:07:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327131#M57636</guid>
      <dc:creator>pankajsync</dc:creator>
      <dc:date>2023-06-11T11:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327150#M57637</link>
      <description>If you hover the cursor over the edge of the plot boundary, the cursor will change to a double-sided arrow and you can the rescale the plot how you like with the mouse.  The change will apply to all the other plots in that Graph Builder visual.</description>
      <pubDate>Tue, 27 Oct 2020 20:58:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327150#M57637</guid>
      <dc:creator>Mark_Zwald</dc:creator>
      <dc:date>2020-10-27T20:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327151#M57638</link>
      <description>I would like to explicitly specify the size of the box in the script. So I can produce plots with consistent box sizes all the time (not necessarily at the time when I have plots open). Is there something similar to 'Frame size' which is meant for box size?</description>
      <pubDate>Tue, 27 Oct 2020 21:04:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327151#M57638</guid>
      <dc:creator>pankajsync</dc:creator>
      <dc:date>2020-10-27T21:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327174#M57639</link>
      <description>&lt;P&gt;The Size(x,y) option will allow you to set the size of the whole plot and the number of subplots will automatically scale to fill in that space.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
Size( x, y ),
Show Control Panel( 0 ),
Variables( X( :X ), Y( :Y ), Group X( :Group ) ),
Elements( Points( X, Y, Legend( 15 ) ), Smoother( X, Y, Legend( 16 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Oct 2020 21:39:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/327174#M57639</guid>
      <dc:creator>Mark_Zwald</dc:creator>
      <dc:date>2020-10-27T21:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/425044#M67440</link>
      <description>&lt;P&gt;How do I resize an existing graph with this script?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 10 Oct 2021 08:27:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/425044#M67440</guid>
      <dc:creator>ezorlo</dc:creator>
      <dc:date>2021-10-10T08:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Box size of Graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/425051#M67441</link>
      <description>&lt;P&gt;One can easily change the size of the graph's frame box.&amp;nbsp; This example creates a simple graph using Graph Builder,&amp;nbsp; Then, after the graph has been created, the JSL&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;current report()[framebox(1)]&amp;lt;&amp;lt;frame size(600,600);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;is run to change the size of the graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Full Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );

Graph Builder(
	Size( 525, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
);

wait(5);
// Change the graph size
current report()[framebox(1)]&amp;lt;&amp;lt;frame size(600,600);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 10 Oct 2021 09:39:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Box-size-of-Graph-builder-plot/m-p/425051#M67441</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-10-10T09:39:05Z</dc:date>
    </item>
  </channel>
</rss>

