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.
  • JMP multivariate capabilities let you understand relationships between multiple variables simultaneously. See how. Friday, Aug. 14, 2 pm US ET.

Discussions

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

Graph Builder

Is it possible to define a specific size of graph in order to get all the graphs with the same size when copying them into a document ? 

4 REPLIES 4
hogi
Level XIII

Re: Graph Builder

Re: Graph Builder

You can set the size() of the graph to what you want.  Save the script of the graph to the script window and edit the size to what you want and run the script.

Graph Builder(
	Size( 800, 600 ),
	Show Control Panel( 0 ),
	Variables( X( :Weight ), Y( :Thickness ) ),
	Elements( Points( X, Y, Legend( 3 ) ) )
);
hogi
Level XIII

Re: Graph Builder

Re: Graph Builder

Thanks, I will try your solution.

Recommended Articles