Hi @yuichi_katsumur ,thanks a lot for the solution.
So, the trick is to add a level with a second Data Filter Context Boxes ...
Are the nested data filter source boxes necessary. It seems that a single one is also fine:
table1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Big Class - Dashboard",
Data Filter Context Box(
H List Box(
Data Filter Source Box(
table1 << Data Filter( Local, Add Filter( columns( :age ) ) )
),
Data Filter Context Box(
H List Box(
Data Filter Source Box(
table1 << Graph Builder(
Show Control Panel( 0 ),
Variables( X( :height ), Y( :weight ) ),
Elements( Points( X, Y, Legend( 9 ) ) )
)
),
table1 << Tabulate(
Show Control Panel( 0 ),
Add Table( Row Table( Grouping Columns( :name ) ) )
)
)
)
)
)
);