I don't think this is it?
Thanks!
dt=Open("$SAMPLE_DATA/Big Class.jmp");
p1=dt<< Graph Builder(
Variables( X( :weight ), Y( :height ) ),
Elements( Line( X, Y, Legend( 5 ) ) )
);
You can, Add Images to a JMP Graph or Report
Thanks!
How to do this with JSL?
Graph Builder(
Variables( X( :weight ), Y( :height ) ),
Elements( Line( X, Y, Legend( 5 ) ) ),
SendToReport(
Dispatch( {}, "height", ScaleBox, {Scale( "Geodesic" ), Minor Ticks( 0 )} ),
Dispatch(
{},
"Graph Builder",
FrameBox,
{Background Map( Boundaries( "World" ) )}
)
)
)
chang
//{Background Map( Boundaries( "World" ) )}
{Background Map( Boundaries( "I:\00\18\Samples\Images\tile.jpg ) )}//?
Thank jthi !