cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
alsaqi89
Level I

How i can get max size graph in PowerPoint - PPP ??

 

gb2=
Graph Builder(
Size( 1155, 703 ),
                 Variables(
                  X( :Reference ID ),
                  Y( :OD Inlet DB ),
                  Y( :OD Outlet DB ),
                   Y( :OD Inlet WB ),
                  Y( :OD Outlet WB ),
Overlay( :Test# )
),
Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
SendToReport(
Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB & WB" )} )
)
);

 

----------------------------

whatever size I put here  //Size( 1155, 703 ),// will not change the size in PPP! .. thank you 


sss.PNGsss.PNG

1 ACCEPTED SOLUTION

Accepted Solutions
jules
Community Manager Community Manager

Re: How i can get max size graph in PowerPoint - PPP ??

Hi @alsaqi89,

Native resolution for most ppt files these days is 1920x1080, so your graph size of 1155x703 would not fill it. I suggest two things: increase the size of the graph, and turn OFF "Fit to Window" to make sure that your graph is not automatically resized before you export to power point. Here is your code with those changes (and I maintained the aspect ratio of your graph):

 

gb2 = Graph Builder(
	Size( 1920, 1169 ),
	Fit to Window( "Off" ),
	Variables(
		X( :Reference ID ),
		Y( :OD Inlet DB ),
		Y( :OD Outlet DB ),
		Y( :OD Inlet WB ),
		Y( :OD Outlet WB ),
		Overlay( :Test# )
	),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
	Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
	Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
	Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB & WB" )} )
	)
);

 

I hope this helps!

@jules 

View solution in original post

2 REPLIES 2
jules
Community Manager Community Manager

Re: How i can get max size graph in PowerPoint - PPP ??

Hi @alsaqi89,

Native resolution for most ppt files these days is 1920x1080, so your graph size of 1155x703 would not fill it. I suggest two things: increase the size of the graph, and turn OFF "Fit to Window" to make sure that your graph is not automatically resized before you export to power point. Here is your code with those changes (and I maintained the aspect ratio of your graph):

 

gb2 = Graph Builder(
	Size( 1920, 1169 ),
	Fit to Window( "Off" ),
	Variables(
		X( :Reference ID ),
		Y( :OD Inlet DB ),
		Y( :OD Outlet DB ),
		Y( :OD Inlet WB ),
		Y( :OD Outlet WB ),
		Overlay( :Test# )
	),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 14 ) ) ),
	Elements( Position( 1, 2 ), Line( X, Y, Legend( 15 ) ) ),
	Elements( Position( 1, 3 ), Line( X, Y, Legend( 16 ) ) ),
	Elements( Position( 1, 4 ), Line( X, Y, Legend( 17 ) ) ),
	SendToReport(
		Dispatch( {}, "graph title", TextEditBox, {Set Text( "OD - DB & WB" )} )
	)
);

 

I hope this helps!

@jules 

alsaqi89
Level I

Re: How i can get max size graph in PowerPoint - PPP ??

thank you! works fine

Recommended Articles