- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Can the X group name text orientation of this Graph Builder be set to vertical?
Thanks!
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ca="tem";New Column(ca);Column(ca)<<Formula( char(age)||"longlong" );dt<<run formulas;Column(ca)<<deleteFormula;
p1 = dt << Graph Builder(
Size( 300, 400 ),
Show Control Panel( 0 ),
Legend Position( "Inside Bottom Right" ),
X Group Edge( "Bottom" ),
Variables( X( :weight ), Y( :height ), Group X( :tem, Size( 161 ) ), Color( :sex ) ),
Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ) ) ),
SendToReport(
Dispatch(
{},
"weight",
ScaleBox,
{Label Row(
{Automatic Tick Marks( 0 ), Show Major Labels( 0 ), Show Major Ticks( 0 ),
Show Minor Ticks( 0 )}
)}
),
Dispatch(
{},
"height",
ScaleBox,
{Label Row(
{Automatic Tick Marks( 0 ), Show Major Labels( 0 ), Show Major Ticks( 0 ),
Show Minor Ticks( 0 )}
)}
),
Dispatch( {}, "X title", TextEditBox, {Hide( 1 )} ),
Dispatch( {}, "Y title", TextEditBox, {Hide( 1 )} )
)
);
6 REPLIES 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
回复: Can the X group name text orientation of this Graph Builder be set to vertical?
It's not perfect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Can the X group name text orientation of this Graph Builder be set to vertical?
Seems like only Y Group has an option to change the level orientation
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Can the X group name text orientation of this Graph Builder be set to vertical?
Thanks!
If there are too many categories of X, can you add a slider to adjust the range of data that needs to be mapped?
I used this option in JMP 14, changing the parameters so that only the left one appears
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Can the X group name text orientation of this Graph Builder be set to vertical?
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Can the X group name text orientation of this Graph Builder be set to vertical?
A slider such as data can change the scope of the selection, and can also change the number of rows selected.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Can the X group name text orientation of this Graph Builder be set to vertical?
You can most likely use Local Data Filter for that
-Jarmo