cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

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