<?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: Graph builder Frame size JSL in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694#M88706</link>
    <description>&lt;P&gt;Any update here?&lt;BR /&gt;sounds like a candidate for&amp;nbsp;&lt;LI-MESSAGE title="Tiny Traps in Jmp and JSL" uid="702685" url="https://community.jmp.com/t5/Discussions/Tiny-Traps-in-Jmp-and-JSL/m-p/702685#U702685" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1721856106476.png" style="width: 780px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66494iE1047F4F8DD192DD/image-dimensions/780x234?v=v2" width="780" height="234" role="button" title="hogi_1-1721856106476.png" alt="hogi_1-1721856106476.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;green: "Size"&lt;/P&gt;&lt;P&gt;blue: frame size&lt;/P&gt;&lt;P&gt;purple: plot size&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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" );
New Window("test",
H List Box(
Graph Builder(
	Size( 500, 300 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Variables(
		X( :name ),
		X( :age, Position( 1 ) ),
		X( :sex, Position( 1 ) ),
		Y( :height ),
		Group X( :sex )
	),
	Elements( Points( X( 1 ), X( 2 ), X( 3 ), Y) ),
	SendToReport(
		Dispatch( {}, {"height vs. name &amp;amp; 2 more"}, TextEditBox,
			{Set Text( "my title\!nspans over 2 lines" )}
		),
		Dispatch( {}, {:height}, TextEditBox,
			{Set Text( "very long Y axis title " ), Rotate Text( "Horizontal" )}
		)
	)
);,
Graph Builder(
	Size( 500, 300 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ), Group X( :age ) ),
	Elements( Points( X, Y ) ),
	SendToReport(
		Dispatch( {}, {:height}, TextEditBox,
			{Set Text( "x" ), Rotate Text( "Horizontal" )}
		)
	)
)));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Jul 2024 21:22:26 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-07-24T21:22:26Z</dc:date>
    <item>
      <title>Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/46012#M26235</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This might be an easy and quick fix. But I kinda struggling to find the right way to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out how to have a consistent frame size with all graphs in graphs builder and consistent legend settings. I run a&amp;nbsp;FOR loop having numerical values at the end of data table. It could range from 1 to many columns and I try to plot all the columns in Y axis.&lt;/P&gt;&lt;P&gt;The main discrepancy occurs when&amp;nbsp;the Y axis has only one parameter, that legend doesn't show up but having 2 or more parameters, the legend automatically shows up and I don't have to write a separate JSL command for it. Because of that, each graph looks different because of the lack of space in legend settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea on how to resolve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2017 18:40:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/46012#M26235</guid>
      <dc:creator>vishwasanj</dc:creator>
      <dc:date>2017-10-16T18:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/46014#M26237</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/7511"&gt;@vishwasanj&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The size argument and their parameters can be used to define and limit the size of your windows as shown in the example below .&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1230, 650 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), Y( :height ), Y( :weight ) ),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 1 ) ) ),
	Elements( Position( 1, 2 ), Bar( X, Y, Legend( 2 ) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Oct 2017 18:50:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/46014#M26237</guid>
      <dc:creator>uday_guntupalli</dc:creator>
      <dc:date>2017-10-16T18:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/545863#M76412</link>
      <description>&lt;P&gt;This does not work.&amp;nbsp; The FRAME SIZE is dependent on the size of the legend / text areas around the FRAME.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 01:47:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/545863#M76412</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2022-09-19T01:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/545866#M76413</link>
      <description>&lt;P&gt;The Size element sest the Frame(FrameBox()) size.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1663553492782.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45580i11EA0AD6B957909F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1663553492782.png" alt="txnelson_0-1663553492782.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It does not set the GraphBuilderContainerBox()&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1663553614327.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45581i3D2C23B161CEEB5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1663553614327.png" alt="txnelson_1-1663553614327.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Which is what I am guessing you expected the size to be set for.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 02:15:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/545866#M76413</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-09-19T02:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/546978#M76453</link>
      <description>&lt;P&gt;That is the opposite of what I want -- I need the &lt;CODE class=" language-jsl"&gt;FrameBox()&lt;/CODE&gt; only to be the specified size.&amp;nbsp; Here is some example code illustrating this.&amp;nbsp; The &lt;CODE class=" language-jsl"&gt;Size( 500, 500 )&lt;/CODE&gt; is fed to both, but clearly the &lt;CODE class=" language-jsl"&gt;FrameBox()&lt;/CODE&gt; size is very much not &lt;CODE class=" language-jsl"&gt;(500, 500)&lt;/CODE&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a matter of fact, it's not even the &lt;CODE class=" language-jsl"&gt;GraphBuilderContainerBox()&lt;/CODE&gt; that you show that is set to the given size -- you first must remove the &lt;CODE class=" language-jsl"&gt;LegendBox()&lt;/CODE&gt;, then the remaining (title / axes / axes headers) is set to the &lt;CODE class=" language-jsl"&gt;(500,500)&lt;/CODE&gt; size.&amp;nbsp; It is just ridiculous!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is literally no way to&amp;nbsp; set the &lt;CODE class=" language-jsl"&gt;FrameBox()&lt;/CODE&gt; (as in, if you had this within an &lt;CODE class=" language-jsl"&gt;Outline Box( "", Graph Builder( ... ) )&lt;/CODE&gt; and did &lt;CODE class=" language-jsl"&gt;Outline Box[Frame Box( 1 )] &amp;lt;&amp;lt; Frame Size( 500, 500 ))&lt;/CODE&gt; BEFORE / DURING instantiation of the &lt;CODE class=" language-jsl"&gt;GraphBuilder()&lt;/CODE&gt; box.&amp;nbsp; It can ONLY be done after the window and graph has been created.&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 );
Open( "$SAMPLE_DATA/Cars.jmp" );
New Window( "TEST",
	H List Box(
		Graph Builder(
			Size( 500, 500 ),
			Show Control Panel( 0 ),
			Fit to Window( "Off" ),
			Variables(
				X( :Make ),
				X( :Model, Position( 1 ) ),
				X( :Year, Position( 1 ) ),
				X( :Protection, Position( 1 ) ),
				X( :"D/P"n, Position( 1 ) ),
				X( :Size, Position( 1 ) ),
				X( :Doors, Position( 1 ) ),
				Y( :Wt ),
				Color( :Model )
			),
			Elements(
				Bar(
					X( 1 ),
					X( 2 ),
					X( 3 ),
					X( 4 ),
					X( 5 ),
					X( 6 ),
					X( 7 ),
					Y,
					Legend( 9 )
				)
			)
		)
	,
		Graph Builder(
			Size( 500, 500 ),
			Show Control Panel( 0 ),
			Fit to Window( "Off" ),
			Variables( X( :Make ), Y( :Wt ) ),
			Elements( Bar( X, Y, Legend( 11 ), Error Interval( "Standard Error" ) ) ),
			SendToReport(
				Dispatch(
					{},
					"Graph Builder",
					FrameBox,
					{Grid Line Order( 1 ), Reference Line Order( 2 )}
				)
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What I need is for the area that has the chart (the &lt;CODE class=" language-jsl"&gt;FrameBox()&lt;/CODE&gt;) to be a given fixed size, independent of what size my axis are or how complicated and long the text is.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ErraticAttack_1-1663713018939.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45637i2D12E9F866D4A05F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ErraticAttack_1-1663713018939.png" alt="ErraticAttack_1-1663713018939.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 22:31:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/546978#M76453</guid>
      <dc:creator>ErraticAttack</dc:creator>
      <dc:date>2022-09-20T22:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694#M88706</link>
      <description>&lt;P&gt;Any update here?&lt;BR /&gt;sounds like a candidate for&amp;nbsp;&lt;LI-MESSAGE title="Tiny Traps in Jmp and JSL" uid="702685" url="https://community.jmp.com/t5/Discussions/Tiny-Traps-in-Jmp-and-JSL/m-p/702685#U702685" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1721856106476.png" style="width: 780px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66494iE1047F4F8DD192DD/image-dimensions/780x234?v=v2" width="780" height="234" role="button" title="hogi_1-1721856106476.png" alt="hogi_1-1721856106476.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;green: "Size"&lt;/P&gt;&lt;P&gt;blue: frame size&lt;/P&gt;&lt;P&gt;purple: plot size&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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" );
New Window("test",
H List Box(
Graph Builder(
	Size( 500, 300 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Variables(
		X( :name ),
		X( :age, Position( 1 ) ),
		X( :sex, Position( 1 ) ),
		Y( :height ),
		Group X( :sex )
	),
	Elements( Points( X( 1 ), X( 2 ), X( 3 ), Y) ),
	SendToReport(
		Dispatch( {}, {"height vs. name &amp;amp; 2 more"}, TextEditBox,
			{Set Text( "my title\!nspans over 2 lines" )}
		),
		Dispatch( {}, {:height}, TextEditBox,
			{Set Text( "very long Y axis title " ), Rotate Text( "Horizontal" )}
		)
	)
);,
Graph Builder(
	Size( 500, 300 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ), Group X( :age ) ),
	Elements( Points( X, Y ) ),
	SendToReport(
		Dispatch( {}, {:height}, TextEditBox,
			{Set Text( "x" ), Rotate Text( "Horizontal" )}
		)
	)
)));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2024 21:22:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694#M88706</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-07-24T21:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703291#M88758</link>
      <description>&lt;P&gt;I know this was a long time ago, but we were fighting this same problem a few months back and came up with this:&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 );

win = Get Window List();

// find graph builder windows
graphs = Filter Each({w}, win,
	If(Length(w &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey='Graph Builder']")) &amp;gt; 0, 1, 0)
);

// get the last Graph Builder
last_gb = graphs[N Items(graphs)][OutlineBox("Graph Builder")] &amp;lt;&amp;lt; Get Scriptable Object;

// set size
last_gb &amp;lt;&amp;lt; Fit to Window("Off");
// last_gb &amp;lt;&amp;lt; Show Control Panel( 0 );
last_gb &amp;lt;&amp;lt; Size(1000,800);

// copy picture
frame = (graphs[N Items(graphs)] &amp;lt;&amp;lt; XPath( "//GraphBuilderBox" ))[1];
frame &amp;lt;&amp;lt; Copy Picture;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The "fit to window" was key to getting the output plots to be exactly the right size.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 17:13:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703291#M88758</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2023-11-27T17:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703343#M88764</link>
      <description>&lt;P&gt;I also started with the hope that some combination of&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="jsl"&gt;Fit to Window( "Off" ),&lt;/LI-CODE&gt;&lt;P&gt;and&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Size(...)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;might solve the problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I realized that in the Code of&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26363"&gt;@ErraticAttack&lt;/a&gt;&amp;nbsp;both functions are used my hope was gone.&lt;BR /&gt;In the example, the different X labels lead to completely different sizes of the graph.&lt;BR /&gt;As long as there is no rectangl around the whole graph (including the axes), nobody will notice, that both have the same size.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Same issue with different sizes of the Y axis:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1701111395062.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59092i5AB0EE1083484931/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1701111395062.png" alt="hogi_0-1701111395062.png" /&gt;&lt;/span&gt;&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 );
Open( "$SAMPLE_DATA/Cars.jmp" );
New Window( "TEST",
	V List Box(
Graph Builder(
	Size( 500, 200 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Fit to Window( "Off" ),
	Variables( X( :Make ), Y( :Wt ) ),
	Elements( Bar( X, Y ) )
)
	,
Graph Builder(
	Size( 500, 200 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Fit to Window( "Off" ),
	Variables( X( :Make ), Y( :Wt ) ),
	Elements( Bar( X, Y, Legend( 1 ) ) ),
	SendToReport(
		Dispatch( {}, "Wt", ScaleBox, {Format( "Engineering SI", 12 )} ),
		Dispatch( {}, "Y title", TextEditBox, {Set Text( "Weight" )} )
	)
)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 18:56:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703343#M88764</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-11-27T18:56:53Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703639#M88784</link>
      <description>&lt;P&gt;Graphs with matching frame size?&amp;nbsp;Is this possible in Jmp?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I asked Jmp support (TS- 00076249) and got the answer:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Yes, I would say it is possible, but it may require &lt;STRONG&gt;quite a bit of scripting&lt;/STRONG&gt; to accomplish this for all possible graphs you want to make - especially if you are talking about Graph Builder.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;To account for the display resolution of the monitor currently in use, you can access a Windows dll that will return the resolution of the monitor.&amp;nbsp; You can use this to scale your pixel size specifications as desired.&amp;nbsp; However, if you are working in a multiple monitor environment where each monitor may have a different resolution, it becomes practically impossible to account for the resolution because there is no way to know which monitor your graph is on.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK, So, how?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it really so complicated to generate graphs with matching sizes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Use case:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;We use PowerPoint to present our Jmp analyses.&lt;/P&gt;&lt;P&gt;To get smooth transitions from page to page, we want to create all graphs with the same frame size (same size for the outer box of the NxM subplots of a page - without axes) and the same font size of the axes and X/Y group labels.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 18:06:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/703639#M88784</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-11-28T18:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/704446#M88859</link>
      <description>&lt;P&gt;I submitted a wish:&lt;BR /&gt;&lt;LI-MESSAGE title="Functionality to generate Plots with specific Plot Size" uid="708478" url="https://community.jmp.com/t5/JMP-Wish-List/Functionality-to-generate-Plots-with-specific-Plot-Size/m-p/708478#U708478" 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;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;let's see ...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 08:15:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/704446#M88859</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-29T08:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/712483#M89580</link>
      <description>Hi vishwasanj,&lt;BR /&gt;I encounter this issue as well. Share my solution with you although it may not a efficient way.&lt;BR /&gt;&lt;BR /&gt;For simplicity I explain the X-axis(horizontal direction) only.&lt;BR /&gt;&lt;BR /&gt;Given that a standard template Framebox size is 500, whole graph size is 535. That means we have size that not belongs to Framebox is 35.&lt;BR /&gt;&lt;BR /&gt;Then, we have a graph generated by some of an for-loop, after assigning framesize=500, the wholesize=550.&lt;BR /&gt;&lt;BR /&gt;Then, considering these graph will export as fixed total size png, if we have same framesize to wholesize ratio, we can have same frame size.&lt;BR /&gt;&lt;BR /&gt;This is to say, we can add 'dx' to the previous graph to make the ratio same.&lt;BR /&gt;&lt;BR /&gt;500:535=(500+dx):(550+dx+dx2),&lt;BR /&gt;where dx2 is axis length increase after dx is applied.&lt;BR /&gt;&lt;BR /&gt;However, in my experience, dx2 is basically negilbible.&lt;BR /&gt;&lt;BR /&gt;Thus, we can resize the 550 width pictures with frame size=500+dx, where&lt;BR /&gt;500:535=(500+dx):(550+dx).&lt;BR /&gt;&lt;BR /&gt;After export as a similar size png, we can have same frame size pics.</description>
      <pubDate>Tue, 26 Dec 2023 17:53:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/712483#M89580</guid>
      <dc:creator>Salter</dc:creator>
      <dc:date>2023-12-26T17:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/712484#M89581</link>
      <description>Take a look at my post, hope it can help you.</description>
      <pubDate>Tue, 26 Dec 2023 17:56:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/712484#M89581</guid>
      <dc:creator>Salter</dc:creator>
      <dc:date>2023-12-26T17:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/801892#M97777</link>
      <description>&lt;P&gt;new link to the wish (the old one seems to be broken):&lt;BR /&gt;&lt;LI-MESSAGE title="Functionality to generate Plots with specific Plot Size" uid="708478" url="https://community.jmp.com/t5/JMP-Wish-List/Functionality-to-generate-Plots-with-specific-Plot-Size/m-p/708478#U708478" 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;&lt;BR /&gt;&lt;BR /&gt;in the mean time the wish collected 15 Kudos :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2024 22:18:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/801892#M97777</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-09-25T22:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder Frame size JSL</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/927113#M108490</link>
      <description>&lt;P&gt;now we have 26 Kudos.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 05:04:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/927113#M108490</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-29T05:04:54Z</dc:date>
    </item>
  </channel>
</rss>

