cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

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 ? 

3 REPLIES 3
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 ) ) )
);

Recommended Articles