cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

How to rotate a label?

hogi
Level XII

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 VI


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 XII


Re: How to rotate a label?

hm ...