Get label function not working anymore with Get Legend Server in JMP 18.1.1
Hello, The command below works in JMP 17, and allows me to retrieve the label of a legend. But since JMP 18 it no longer works, and I get an error message instead. Does anyone know how to fix this? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = Graph Builder(
Variables(
X( :height ),
Y( :weight ),
Overlay( :sex ),
Color( :age )
),
Elements(
Points( X, Y,
...