cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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.