This is the most generic I can make the code. I am essentially adding 5 more variability charts sig2-6 to the v list box named vlis by appending. And they are all greyed out until I click in the middle of each graph. Hope this helps.
signal = New Window("signal", vlis = V List Box());
sig1 = V List Box(vc sig1 = sig1 df1 << Variability Chart(
Y( :Signal ),
X( :Consumable),
Show Range Bars( 0 ),
Show Cell Means( 0 ),
Std Dev Chart( 0 ),
Points Jittered( 1 ),
Title("Variability chart for Signal 1"),
SendToReport(
Dispatch(
{"Variability Chart for Signal 1"},
"2",
ScaleBox,
{Add Ref Line( 0, "Dotted", "Medium Light Gray", "", 1 ),
Add Ref Line( 100, "Dotted", "Medium Light Green", "100", 1 )}
),
Dispatch(
{""},
"Variability Chart",
FrameBox,
{Row Legend(
Sample Mix,
Color(1),
Color Theme(""), // JMP seems to leave this "" when using Value Colors
Marker(0),
Marker Theme(""),
Continuous Scale(0),
Reverse Scale(0),
Excluded Rows(0)
)}
)
)
));
vlis << Append(sig1);