cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

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

Help with Graph Builder - Would like a Background Color other than White

Hello - I would like to add a background color to a JMP chart that I built in JMP Graph Builer.  I save the chart as a PNG and have attached it.  Does anyone know how to do this?

 

Chart_2 (1).png

4 REPLIES 4
ThuongLe
Level IV

Re: Help with Graph Builder - Would like a Background Color other than White

Go to File --> Preferences --> Styles and select the color you want :)

11111.PNG

Thuong Le
txnelson
Super User

Re: Help with Graph Builder - Would like a Background Color other than White

You should be able to go to

     Edit=>Properties

and then click on the area of interest and change the background color

background2.PNG

But for JMP 15, changing the background color of the Frame Box() using this method, does not work.  It appears to have been fixed in JMP 16.   

However, through scripting, you can use the

    << background color( ??? )

to get the results you want

background.PNG

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

gb = Graph Builder(
	Size( 528, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) )
	)
);

Report( gb )[FrameBox( 1 )] << background color( red );

and change the color

Jim
Georg
Level VII

Re: Help with Graph Builder - Would like a Background Color other than White

In my JMP 15.1.0 (win10) in GB I can Change Background Color via context menu interactively.

 

 

Georg
txnelson
Super User

Re: Help with Graph Builder - Would like a Background Color other than White

Excellent.........
Jim

Recommended Articles