I have recently updated to JMP 12.1 and was trying to port over an old script to set the spec limit property (see below). It works fine in JMP 11, but now that I'm running JMP 12.1, the code in red doesn't work. It doesn't error out, it just doesn't toggle the option for showing specs as graph reference lines. Has anyone found a solution to this?
M
JMP 11 code that worked but doesn't work with 12.1
dt << Sort (By("Date"), Order (Ascending), Replace Table);
Column ("Width") << Set Property("Spec Limits",
{LSL(1.7), Target(1.9), USL(2.1)}, Show as graph reference lines( 1 ),
);