How to add a connection between the first point and the last point in this diagram?
Thanks Experts!
dt=Open("$SAMPLE_DATA/Big Class.jmp");
Graph Builder(
Variables( X( Transform Column( "Row", Formula( Row() ) ) ), Y( :weight ) ),
Elements( Points( X, Y, Legend( 6 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
6,
Properties( 0, {Marker Size( 2 )}, Item ID( "weight", 1 ) )
)}
)
)
)