Hi JMP Community,
I stumbled on a simple problem that I cannot resolve: I would like to draw two-headed arrows in a Graph Builder plot via the Customize option.
Specifically, using the Arrow () function, I can only get single-headed arrows and the Set Arrowhead () command is not recognized (see script below).
I also tried to modify a V line segment, but the Set Arrowhead () command does not work either. Hence, I believe that the Arrow and V Line objects are not directly modifiable, and I would need your help to figure out the proper syntax to make it work.
Pen Color( red );
Ar1 = Arrow( {4, 0.035}, {4, 0.1} );
Ar1 << Set Arrowhead ("Both"); // Does not work
Seg1 = V Line (4, 0.035, 0.1);
Seg1 << Set Arrowhead ("Both"); // Does not work
Any hints would be appreciated.
Best,
TS
Thierry R. Sornasse