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!
Go to Solution
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
Thanks! i was looking for that for a while.