Very new to this so please excuse if I miss anything.
I would like a Main tab and sub-tabs.
The below is what I am starting with. I want the main tab to be "NTLM" and sub tabs to be "Rsh"
How do I properly append the chart to the tab box?
Names Default To Here( 1 );
nw = New Window( "PCM Analysis",Tab Box(tp = V List Box()));
////////////////////NTLM
//////////Rsh
Variability Chart(
Y( :Rsh ),
X( :WaferID of MOSFET_TLM, :AC split, :NP Spacer dep ),
Std Dev Chart( 0 ),
Points Jittered( 1 ),
Where( :DeviceID == "NTLM" ),
SendToReport(
Dispatch(
{"Variability Chart for Rsh"},
"2",
ScaleBox,
{Min( 1 ), Max( 330 ), Inc( 50 ), Minor Ticks( 4 ),
Add Ref Line( 1, "Dotted", "Medium Light Gray", "", 1 ),
Add Ref Line( 1, "Solid", "Blue", "Min Target (170.00)", 1 ),
Add Ref Line( 1, "Solid", "Blue", "Max Target (200.00)", 1 ),
Add Ref Line( 1, "Solid", "Red", "Min Limit (1.00)", 1 ),
Add Ref Line( 1, "Solid", "Green", "Target (185.00)", 1 )}
)
)
)