Here's a little puzzle: I'm running a macro that produces various graphs and stats and compiles/arranges them in a final result window. I've written this macros years ago and it always delivered. SInce upgrade to JMP17, I realise however, that one of the graphs has the x-axis offset in the final result window, meaning, the graph's axis does no longer correspond to the graph!?! I've attached a screenshot of the graph (qls) after being written to the report (red square):
rqls = qls << report;
and after the report (rqls) is arranged in a new window together with the other items
New Window ("Duplicates",
Outline Box ("[Project Name] - Duplicate Analysis",
VListBox (
HlistBox (rdis),
VListBox (
HListBox (
VListBox (rbiv),
VListBox (rowy, rqls)
),
Bizarrely, the x.axis of the graph has shifted by 3 or 4 units and is now incorrect! The graph window does no longer start at 0, but rather at -4 or so, and my result of 47% has become something like 43%
Any ideas what goes wrong here?