<?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: export plots to PPT with the same scale and resolution in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/926450#M108435</link>
    <description>&lt;P&gt;the issue:&lt;BR /&gt;how to control the Size of the FrameBox ?&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694/highlight/true#M88706" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694/highlight/true#M88706&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there is 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;BR /&gt;&lt;BR /&gt;The # of Kudos indicates a strong demand to fix the issue.&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jan 2026 12:55:45 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-01-27T12:55:45Z</dc:date>
    <item>
      <title>export plots to PPT with the same scale and resolution</title>
      <link>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/926367#M108423</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to JSL to generate report (.ppt).&lt;/P&gt;
&lt;P&gt;There are 2 plots I want to export: 5 groups and 3 groups.&lt;/P&gt;
&lt;P&gt;I want each group with 250*250, so 5 groups plot should be 1250*250 and 3 groups plot should be 750*250.&lt;/P&gt;
&lt;P&gt;I use Save Presentation to export plots.&lt;/P&gt;
&lt;P&gt;5 groups size is the same as I export plots manually but 3 groups size is not. The 3 groups size is squeezed, only 75%.&lt;/P&gt;
&lt;P&gt;How could I export multiple plots with the same scale and resolution?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NonLeakage_graph = dt &amp;lt;&amp;lt; Graph Builder(
	Size( 1250, 250 ),
	Variables( X( :Lot ), Y( :drift% ), Group X( :Label ), Color( :Lot ) ),
	Elements( Box Plot( X, Y, Legend( 1 ) ) ),
	By( :Rel_Test ),
	SendToReport(
		Dispatch( {}, "drift%", ScaleBox,
			{Format( "Percent", 12, 0 ), Min( -0.25 ), Max( 0.25 ), Inc( 0.05 ), 
			 Minor Ticks( 0 ), Add Ref Line( 0.2, "Solid", "Red", "20%", 1 ),
			 Add Ref Line( -0.2, "Solid", "Red", "-20%", 1 )}
		)
	)
);


NonLeakage = NonLeakage_graph &amp;lt;&amp;lt; Report;
save_path = "D:\Reliability Qual\reliability report template\jmp_example.pptx";


For( i = 1, i &amp;lt;= N Items( NonLeakage ), i++,
	If( File Exists( save_path ),
		NonLeakage[i] &amp;lt;&amp;lt; Save Presentation( save_path, Append );
	,
		NonLeakage[i] &amp;lt;&amp;lt; Save Presentation( save_path );
	)
);
NonLeakage &amp;lt;&amp;lt; Close Window;


dt &amp;lt;&amp;lt; Clear Row States; 
dt &amp;lt;&amp;lt; Select Where( (Contains( {"0cyc", "0hrs"}, :ReadPoint )) | (!Contains( {"IGSS", "IGSSR", "IDSS"}, :Label )) );
dt &amp;lt;&amp;lt; Hide( 1 ) &amp;lt;&amp;lt; Exclude( 1 ); 
dt &amp;lt;&amp;lt; Clear Selection;

dt &amp;lt;&amp;lt; Select Where( (!Contains( {"0cyc", "0hrs"}, :ReadPoint )) &amp;amp; (Contains( {"IGSS", "IGSSR", "IDSS"}, :Label )) );

Summarize( dt, l_groups = By( :Rel_Test ) );

Leakage_graph=dt &amp;lt;&amp;lt; Graph Builder(
	SendToByGroup( {:Rel_Test == "H3TRB"} ),
	Size( 750, 250 ),
	Variables( X( :Lot ), Y( :drift% ), Group X( :Label ), Color( :Lot ) ),
	Elements( Box Plot( X, Y, Legend( 1 ) ) ),
	By( :Rel_Test ),
		SendToReport(
			Dispatch( {}, "drift%", ScaleBox,
				{Format( "Fixed Dec", 12, 0 ), Min( 0 ), Max( 20 ), Inc( 5 ),
				Minor Ticks( 0 ), Add Ref Line( 10, "Solid", "Red", "10", 1 )}
			)
		)
	);

Leakage = Leakage_graph &amp;lt;&amp;lt; Report;
Leakage &amp;lt;&amp;lt; Save Presentation( "D:\Reliability Qual\reliability report template\jmp_example.pptx",append );



&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 01:51:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/926367#M108423</guid>
      <dc:creator>LT</dc:creator>
      <dc:date>2026-01-27T01:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: export plots to PPT with the same scale and resolution</title>
      <link>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/926450#M108435</link>
      <description>&lt;P&gt;the issue:&lt;BR /&gt;how to control the Size of the FrameBox ?&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694/highlight/true#M88706" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Graph-builder-Frame-size-JSL/m-p/702694/highlight/true#M88706&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;there is 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;BR /&gt;&lt;BR /&gt;The # of Kudos indicates a strong demand to fix the issue.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jan 2026 12:55:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/926450#M108435</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-27T12:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: export plots to PPT with the same scale and resolution</title>
      <link>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/927082#M108488</link>
      <description>&lt;P&gt;Hi hogi,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This does not work. Everything looks good in JMP but after exporting to PPT, the plots' scales are different.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 00:19:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/927082#M108488</guid>
      <dc:creator>LT</dc:creator>
      <dc:date>2026-01-29T00:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: export plots to PPT with the same scale and resolution</title>
      <link>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/927115#M108491</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/54056"&gt;@LT&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You seem to be right. However, the issue is not where I thought it was.&lt;BR /&gt;With the hints in the first link, you can achieve a lot — even more than I thought possible when I wrote my first reply.&lt;/P&gt;
&lt;P&gt;This code creates plots with the requested proportions:&lt;BR /&gt;Three frames with 250x250 -&amp;gt; 750x250 &lt;BR /&gt;and five frames with 250x250 -&amp;gt; 1250x250.&lt;/P&gt;
&lt;P&gt;When you copy the graphs to the clipboard and paste them into a graphics program, you can see that all the subplots are the same size.&lt;/P&gt;
&lt;P&gt;The code also points to the actual problem:&lt;/P&gt;
&lt;P&gt;regardless of the size of the PNG or JPG image, it can be scaled in the presentation according to some hidden rules.&lt;BR /&gt;I fear that the &lt;FONT face="courier new,courier"&gt;&amp;lt;&amp;lt; save presentation&lt;/FONT&gt; function doesn't allow the user to adjust these rules.&lt;/P&gt;
&lt;P&gt;A workaround: You can use scripting (e.g. via the Python interface in JMP) to specify the size and position of the inserted graphs in the presentation.&lt;/P&gt;
&lt;P&gt;Alternatively, you can email &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;&amp;nbsp; for further suggestions.&lt;BR /&gt;Perhaps there is a hidden setting in &lt;FONT face="courier new,courier"&gt;&amp;lt;&amp;lt; save presentation ...&lt;/FONT&gt;&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 Families.jmp" );
 fn = "$TEMP/jmp_example.pptx"
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv &amp;lt;&amp;lt; report;
rbiv &amp;lt;&amp;lt; Save Presentation(fn );

For each( {selection}, {{13, 14, 15}, {13, 14, 15, 16, 17}},
	Eval(
		Eval Expr(
			gb = Graph Builder(
				Fit to Window( "Off" ),
				Variables(
					X( :height ),
					Y( :weight ),
					Group X( :age ),
					Overlay( :age )
				),
				Elements(
					Points( X, Y ),
					Smoother( X, Y )
				),
				Local Data Filter(
					Conditional,
					Add Filter(
						columns( :age ),
						Where( :age == Expr( selection ) )
					)
				)
	
			)
		)
	);

	fb = Report( gb )[FrameBox( 1 )];
	fb &amp;lt;&amp;lt; Frame size( 250, 250 );
// show(fb &amp;lt;&amp;lt; get size);
	gb &amp;lt;&amp;lt; save presentation( fn, Append );
);

Web( fn );
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Jan 2026 05:58:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/export-plots-to-PPT-with-the-same-scale-and-resolution/m-p/927115#M108491</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-01-29T05:58:42Z</dc:date>
    </item>
  </channel>
</rss>

