In the enhanced log introduced in JMP 16 the max length of some things written to the log is limited. Is there a way to override or change this? For example, run the last line of the script below with the text log and the entire display tree is returned. Turn on the enhanced log and it is truncated.
I feel like I'm missing something simple here...
Names default to here(1);
dt = Open("$Sample_data/big class.jmp");
gb = Graph Builder(
Size( 528, 456 ),
Show Control Panel( 0 ),
Variables( X( :sex ), Y( :height ), Overlay( :age ) ),
Elements( Bar( X, Y, Legend( 9 ) ) )
);
gb << get xml;