I usually have built my "dashboards" with New Window. The example below can give you some ideas (you could possibly also use Dashboard builder instead of new window, if you figure out how to reports there).
Create a function (or expression) to build your control charts with fixed size (or size as argument) and then use that function to build the dashboard you want.
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
build_cc = function({colRef}, {cc},
cc = Eval(EvalExpr(dt << Control Chart Builder(
Size(250, 500),
Show Two Shewhart Charts(0),
Show Control Panel(0),
Show Limit Summaries(0),
Variables(Subgroup(:wafer), Y(Expr(colRef))),
Chart(
Points(Statistic("Average")),
Limits(Sigma("Moving Range"), Zones(1), Shade Zones(1))
),
SendToReport(Dispatch({}, Expr(colRef || "Limit Summaries"), OutlineBox, {Close(1)}))
)));
return(cc);
);
New Window("",
Data Filter Context Box(
H List Box(
dt << Data Filter(Local, Add Filter(columns(:Wafer))),
build_cc("NPN1"),
build_cc("PNP1"),
build_cc("ESP1"),
build_cc("EP2")
)
)
);
-Jarmo