You should be able to go to
Edit=>Properties
and then click on the area of interest and change the background color
![background2.PNG background2.PNG](https://community.jmp.com/t5/image/serverpage/image-id/27473iA75A2A3CF5A95D3A/image-size/large?v=v2&px=999)
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 background.PNG](https://community.jmp.com/t5/image/serverpage/image-id/27474iFE4FA6A3242F6A3A/image-size/large?v=v2&px=999)
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