How to set auto axis scaling with scripting?
Using JMP 13, how can the axis be set to auto scale using scripting commands.A snippet of the script code showing a simple variable in place for the min and max. SendToReport(
Dispatch(
{},
"val",
ScaleBox,
{Min( Axis_min ), Max( Axis_max ), Inc( 1 ), Minor Ticks( 1 ),
Add Ref Line( 5, "Dotted", "Medium Dark Red", "5", 4 )}
),Goal: Allow something else (user, script, other) to...