Hi,
Ah yes, you are right: my problem is that in my code, I defined some values for my variables that are used to write a text and draw a line in my plots.
Here is a part of my code that is used to define the vertical line at "Split - 0.5" and a text at the variables "row_text" and "column_text" (written in bold and underlined). The issue is that when I open my JMP project after saving and closing it, the vertical line and the text doesn't appear.
Dispatch(
{},
"Control Chart Builder",
FrameBox,
{Marker Size( 4 ), Add Graphics Script( 2, Description( "" ), Text( {20, 100}, "" ) ),
Add Graphics Script(
3,
Description( "" ),
Pen Color( "black" );
V Line( Split - 0.5 );
), Grid Line Order( 1 ), Reference Line Order( 4 ), DispatchSeg(
TopSeg( 1 ),
{Set Script(
Text( Row_text, Column_text, "Previous Period" );
)}
), DispatchSeg(
TopSeg( 2 ),
{Set Script(
Pen Color( "black" );
V Line( Split - 0.5 );
)}
)}
)
How can I change the code with the "evalexpr" function to avoid the issue?
Thank you very much and have a nice day,
Jean