The size of a graph automatically adapts to the size of the window and the size of additinoal objects in the window.
With this auto-adjust, the local data filter has an influence on the minimum height of an image.
Please check the JSL code:
The graph opens with the desired size.
But when you open the local data filter with the grey triangle, the height of the graph increases.
Is there an option that prevents a graph from auto-adjusting to the height of the Local Data Filter?
How do I enable this option for all graphs that I create?
Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
Size( 329, 254 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements( Points( X, Y, Legend( 4 ) ), Smoother( X, Y, Legend( 5 ) ) ),
Local Data Filter(
Close Outline( 1 ),
Add Filter(
columns( :name ),
Display( :name, N Items( 15 ), Find( Set Text( "" ) ) )
)
)
)