prev sib - how?
I want to get in this display tree from the Axis Box to the TextEditBox: but with the below code, I get stuck at step 2: going to the previous sibling: Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = dt << Graph Builder(
Variables( X( :height ), Y( :weight )),
Elements( Points( X, Y) )
);
show(start= report(gb)["Graph Builder",AxisBox(1)]);
show(step1 = start << par
...