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.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

How to rotate a label?

In the Scripting Guide I found the command

Text Box<<Rotate Text(direction)


Is there a command to rotate the labels in Graph Builder?

hogi_0-1687157045757.png

 

Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Data Table( "Big Class" ):height << Format( "Percent", 5, 0 );

gb = Graph Builder(
	Variables( X( :sex ), X( :age, Position( 1 ) ), Y( :height ), Overlay( :sex ) ),
	Elements( Bar( X( 1 ), X( 2 ), Y, Legend( 3 ), Label( "Label by Value" ) ) ),
);
2 REPLIES 2
Ressel
Level VII

Re: How to rotate a label?

If the mountain will not come to the prophet ...

 

gb = Graph Builder(
	Variables( Y( :sex ), Y( :age, Position( 1 ) ), X( :height ), Overlay( :sex ) ),
	Elements( Bar( X( 1 ), X( 2 ), Y, Legend( 3 ), Label( "Label by Value" ) ) ),
);

 

Ressel_0-1687951545474.png

 

hogi
Level XIII

Re: How to rotate a label?

hm ...

Recommended Articles