cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lala
Level IX

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 IX

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 IX

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 IX

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

Thank jthi !

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

Recommended Articles