I quickly tested this with Semiconductor Capability example dataset. It seems like there is an issue when you use the exactly same name as the column has (at least in JMP15.2.1).
Modify title to NPN1
Script saved to data table:
Control Chart Builder(
Show Control Panel(0),
Variables(Y(:NPN1)),
Chart(Position(1)),
SendToReport(
Dispatch({}, "graph display 1 title", TextEditBox, {Set Text("NPN1")})
)
)
Result of table script:
Now lets modify the title by adding space before the NPN1 and save the script to data table:
Control Chart Builder(
Show Control Panel(0),
Variables(Y(:NPN1)),
Chart(Position(1)),
SendToReport(
Dispatch({}, "graph display 1 title", TextEditBox, {Set Text(" NPN1")})
)
)
And running the script:
No sure why this happens, but maybe modifying the titles a bit will help at least until this is changed. Maybe add something that will directly indicate what type of control chart you have like "IMR of Parameter 2"
-Jarmo