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).
![jthi_0-1629271016475.png jthi_0-1629271016475.png](https://community.jmp.com/t5/image/serverpage/image-id/35125i8F4C60D05E388628/image-size/medium?v=v2&px=400)
![jthi_1-1629271030954.png jthi_1-1629271030954.png](https://community.jmp.com/t5/image/serverpage/image-id/35126i85A0EF24DB73ADBE/image-size/medium?v=v2&px=400)
Modify title to NPN1
![jthi_2-1629271052034.png jthi_2-1629271052034.png](https://community.jmp.com/t5/image/serverpage/image-id/35127iB04EC3C05C1AD80C/image-size/medium?v=v2&px=400)
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:
![jthi_3-1629271081126.png jthi_3-1629271081126.png](https://community.jmp.com/t5/image/serverpage/image-id/35128iC8E9F1A0E55B3C76/image-size/medium?v=v2&px=400)
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:
![jthi_4-1629271161354.png jthi_4-1629271161354.png](https://community.jmp.com/t5/image/serverpage/image-id/35129iF6DFCC709F9E29C6/image-size/medium?v=v2&px=400)
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