GraphBuilder > FrameBox << Add Graphics Script (V Line (x,y1,y2)): dynamically assign x, y1, and y2?
Hi JMP Community,
It's my turn to be stumped by an apparently trivial project.
I'm trying to dynamically add V Lines to a Graph Builder plot and I'm getting rather unexpected results with the test script below:
Names Default to Here (1);
dt = New Table ("TEST",
New Column ("X", Set Values ([1,2,3,4,5])),
New Column ("Y", Set Values ([3,2,5,8,6]))
);
gb = dt << Graph Builder(
Fit to Wind...