[JMP12 JSL for Graph Builder] Failed to add new element into each position
Hi, currently I hope to add new element into each position for my chart, chart with one X-axis and several Y-axes; so I use the code below: For(jj = 1, jj <= 20, jj++,
gb << Elements( Position( 1, jj ), Points( X, Y , Legend( 1 )), Smoother( X, Y , Legend( 2 ) ) );
);
However, the chart created with this code still with 1 elements only, I right click the chart there are 2 elements shown though.W...