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 move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. 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

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.