Hello,
I have an application with a dashboard showing the distributions (and other graphs) of a table's parameters.
In this application, the user can interactively set limits, to be displayed on the graphs. To do this, I use the ‘Axis’ property of the columns. And while changes to this property are automatically reflected on graph builder graphics, this does not seem to be the case on the distribution platform.
Why is this? How can I make this interactive on the distribution platform too?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Restaurant Tips.jmp" );
:Day of Week << set property( "Row Order Levels", 1 );
dt_split = dt << Split( Split By( :Day of Week ), Split( :Bill Amount ), Sort by Column Property, remaining columns( drop all ) );
dt_split << Distribution(
Continuous Distribution( Column( :Thu ) )
);
dt_split << Graph Builder(
Size( 495, 456 ),
Show Control Panel( 0 ),
Variables( X( :Thu ) ),
Elements( Points( X, Legend( 12 ) ) )
);
wait(2);
dt_split:Thu << Set Property(
"Axis",
{Add Ref Line( 31.94, "Solid", "Red", "Limite1", 1 )}
);