cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

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