How to pass values to Min and Max for Axis via Set Property?
The following works for myCol in dt. myCol is Numeric and ContinuousNames Default To Here (1);
dt = Current Data Table();
dt:myCol<< Set Property("Axis", {Min(0.02), Max(10.05), Inc( 0.01 ), Minor Ticks( 1 )});
However the following results in a JMP (v 16.2.0) crash. Where am I going wrong?ll = 0.02;
ul = 10.05;
dt:myCol<< Set Property("Axis", {Min(ll), Max(ul), Inc( 0.01 ), Minor Ticks( 1 )});
Che...