Hello everybody,
I would like to know if there is a way to update the Shape Column property of the Graph Builder. I tried the following script, but it just opens the window to select the new column, so I've probably missed something... Thanks in advance for your help!
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
GB = dt <<Graph Builder(
Size( 528, 456 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements( Points( X, Y, Legend( 6 ), Set Shape Column( :age ) ) )
);
// Change the Shape Column
gbb = Report( gb )[Graph Builder Box( 1 )];
gbb <<update element (1,1,1,{Set Shape Column(:name)});