キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
言語を選択 翻訳バーを非表示
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件の返信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

おすすめの記事