The local data filter allows the user to select the rows of interest.
I wonder how I can allow the same functionality but for columns without having to edit the graph.
For example, allowing the user to select what to visualize between weight, size, age, sex...
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
Size( 490, 448 ),
Show Control Panel( 0 ),
Variables(
X( :age ),
X( :sex, Position( 1 ) ),
X( :height, Position( 1 ) ),
X( :weight, Position( 1 ) ),
Color( :sex )
),
Elements( Parallel( X( 1 ), X( 2 ), X( 3 ), X( 4 ), Legend( 5 ) ) )
)