cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
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.