Hi,
Is there a way to add graph legends for each plots in a separate Vscroll box so that way I can avoid the blank area between two plots? I have a dashboard and am trying to make the plots more visually appealing.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Semiconductor Capability.jmp" );
Variability Chart(
Y( :NPN1, :PNP1, :PNP2, :NPN2, :PNP3 ),
Model( "Main Effect" ),
X( :Wafer ID in lot ID ),
Variability Analysis(
:NPN1,
Show Range Bars( 0 ),
Show Separators( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 )
),
Variability Analysis(
:PNP1,
Show Range Bars( 0 ),
Show Separators( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 )
),
Variability Analysis(
:PNP2,
Show Range Bars( 0 ),
Show Separators( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 )
),
Variability Analysis(
:NPN2,
Show Range Bars( 0 ),
Show Separators( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 )
),
Variability Analysis(
:PNP3,
Show Range Bars( 0 ),
Show Separators( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 )
),
SendToReport(
Dispatch(
{"Variability Gauge Analysis for NPN1", "Variability Chart for NPN1"},
"Variability Chart",
FrameBox,
{Row Legend(
:Wafer ID in lot ID,
Color( 1 ),
Color Theme( "JMP Default"(1) ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
),
Dispatch(
{"Variability Gauge Analysis for PNP1", "Variability Chart for PNP1"},
"Variability Chart",
FrameBox,
{Row Legend(
Wafer ID in lot ID,
Color( 1 ),
Color Theme( "JMP Default"(1) ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
),
Dispatch(
{"Variability Gauge Analysis for PNP2", "Variability Chart for PNP2"},
"Variability Chart",
FrameBox,
{Row Legend(
Wafer ID in lot ID,
Color( 1 ),
Color Theme( "JMP Default"(1) ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
),
Dispatch(
{"Variability Gauge Analysis for NPN2", "Variability Chart for NPN2"},
"Variability Chart",
FrameBox,
{Row Legend(
Wafer ID in lot ID,
Color( 1 ),
Color Theme( "JMP Default"(1) ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
),
Dispatch(
{"Variability Gauge Analysis for PNP3", "Variability Chart for PNP3"},
"Variability Chart",
FrameBox,
{Row Legend(
Wafer ID in lot ID,
Color( 1 ),
Color Theme( "JMP Default"(1) ),
Marker( 0 ),
Marker Theme( "" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
)
)
);