cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
ron_horne
Super User (Alumni)

size to isometric - is it scriptable?

hi All,

Is there a script command i can write to produce a graph with isometric scale?

When I make a graph and select "size to isometric" the script it produces does not insure an isometric graph if the data has changed.

thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: size to isometric - is it scriptable?

Send the command to the FrameBox.

For example:

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = Bivariate(Y(:weight), X(:height));

Report(biv)[FrameBox(1)] << size to isometric;

View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: size to isometric - is it scriptable?

Send the command to the FrameBox.

For example:

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = Bivariate(Y(:weight), X(:height));

Report(biv)[FrameBox(1)] << size to isometric;

ron_horne
Super User (Alumni)

Re: size to isometric - is it scriptable?

Thanks! i was looking for that for a while.

Recommended Articles