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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar
0 Kudos

Implement Prev Sib for Displays

When buidling a display tree in a new window I cannot traverse the tree in reverse direction. So I can use number edit box << sib to find the next display box, but I cannot use <<prev sib to find the previous display box.

 

Example of what I'm trying to do in this forum topic:  

 

1 Comment
Jeff_Perkinson
Community Manager
Status changed to: Delivered

JMP 15 has a <<Prev Sib() message.

 

Names Default To Here( 1 );
//This message applies to all display box objects
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = dt << Bivariate( y( :weight ), x( :height ) );
rbiv = biv << report;
axisbox = rbiv[axis box( 2 )];
axisSibling = axisbox << Prev Sib();
Print( axisSibling << Class Name() );