Hello,
I am receiving dozens of warnings in the log file which seem to come from Dispatch not being addressed as desired. I use JMP 16.0.0. Here is an example to illustrate the issue. My real application is more complex with several individual Dispatch commands to the charts.
dt = Open("$SAMPLE_DATA\Big Class.jmp");
dt:age << SetModelingType("Continuous");
dt << VariabilityChart(
X(:sex),
Y(:age, :height, :weight),
SendToReport(
Dispatch(
{},
"Variability Chart for age",
OutlineBox,
{SetTitle("My Indiviual Variability Chart Title")}
)
)
);
The code generates (a list of) 3 Variability Charts. I try to set the title of the "age" chart only. Setting the title works fine. But I get the following 2 warnings in the log.
Cannot find OutlineBox[ "Variability Chart for age" ] at {}
Cannot find OutlineBox[ "Variability Chart for age" ] at {}
{Variability Chart[], Variability Chart[], Variability Chart[]}
It appears like the message is dispatched to all three charts. And the outline box with name "Variability Chart for age" is not found in the "height" and the "weight" charts, of course.
How can I ensure the message is dispatched to the "age" chart only?
Thanks,
Alex.