- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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?
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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" ) ) ),
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to rotate a label?
hm ...