- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How can I set reverse order of axis scale using jsl without specifiying Min and Max values?
Elements( Points( X, Y, Legend( 38 ) ) ),
{},
"row",
ScaleBox,
{Min( 65 ), Max( 0 ), Inc( 5 ), Minor Ticks( 1 )}
),
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How can I set reverse order of axis scale using jsl without specifiying Min and Max values?
Created:
Aug 31, 2016 08:03 AM
| Last Modified: Oct 18, 2016 8:56 PM
(3708 views)
| Posted in reply to message from lutz_eckart_pyr 08-31-2016
Here is the example JSL from the scripting index (Help==>Scripting Index) on specifying how to reverse the scale
Names Default To Here( 1 );
Open( "$sample_data/big class.jmp" );
gb = Graph Builder(
Variables( X( :height ), Y( :weight ) ),
Elements( Points( X, Y ), Smoother( X, Y ) )
);
gbr = Report( gb );
gbr[axisbox( 1 )] << Reversed Scale( 1 );
Jim