cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
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