cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

JMP Wish List

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

Rotate labels in Scatterplot Matrix

I wish I could rotate the Label Orientation to Perpendicular for ALL x-axes simultaneously in a Scatterplot Matrix. I have to rotate them one at a time, and the broadcast command using [Ctrl] doesn’t work for that.
2 Comments
hogi
Level XIII

This code will do the trick:

lbs= current report() << xPath("//ListBox");
xLabels= lbs[N items(lbs)]<< xPath("//TextEditBox ");
xLabels << Rotate Text( "Left" );

rotateLabels.gif

SarahGilyard
Staff
Status changed to: Needs Info

Thanks for posting dlifke. See the suggestion from user hogi. Let us know if this is sufficient for your needs.