Hi,
Is there a way to have a separate Y-axis for each parameter in the graph builder in the parallel independent combination?
Combine scale - Parallel merged.
I want to have a separate Y axis for each parameter below
Combine scale - Parallel independent
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
dt << Graph Builder(
Size( 1146, 347 ),
Show Control Panel( 0 ),
Variables(
X( :NPN1, Combine( "Parallel Independent" ) ),
X( :PNP1, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :PNP2, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :NPN2, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :IVP6, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :PNP9, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :A2N, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :A2P, Position( 1 ), Combine( "Parallel Independent" ) ),
X( :A2P1, Position( 1 ), Combine( "Parallel Independent" ) )
),
Elements(
Histogram(
X( 1 ),
X( 2 ),
X( 3 ),
X( 4 ),
X( 5 ),
X( 6 ),
X( 7 ),
X( 8 ),
X( 9 ),
Legend( 4 )
),
Box Plot(
X( 1 ),
X( 2 ),
X( 3 ),
X( 4 ),
X( 5 ),
X( 6 ),
X( 7 ),
X( 8 ),
X( 9 ),
Legend( 5 )
)
)
);
TIA