cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
‘New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit – register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
lala
Level VII

Can I add a custom image as background in JMP graphics?

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 ) ) )
);

2024-08-15_14-21-16.png

5 REPLIES 5
jthi
Super User

Re: Can I add a custom image as background in JMP graphics?

lala
Level VII

Re: Can I add a custom image as background in JMP graphics?

Thanks!

  • How to do this with JSL?

2024-08-15_14-42-37.png

lala
Level VII

Re: Can I add a custom image as background in JMP graphics?

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 ) )}//?
jthi
Super User

Re: Can I add a custom image as background in JMP graphics?

lala
Level VII

Re: Can I add a custom image as background in JMP graphics?

Thank jthi !

2024-08-15_14-56-56.png