cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
lala
Level VII

Where is this font size set for JMP mapping?

The font the arrow points to.

Thanks!

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
p1 = dt << Graph Builder(
	Variables( X( :weight ), Y( :height ), Group X( :age ), Color( :sex ) ),
	Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ), Summary Statistic( "Sum" ) ) )
);

2024-05-13_10-13-49.png

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Where is this font size set for JMP mapping?

Use

Names Default To Here( 1 );
Get Preferences( );

and then in the log you will see the structure for the preference in question and you will then be able to use 

Preferences (	Fonts(
		English(
			Text Font( "Segoe UI", 9 )
                )
)
Jim

View solution in original post

7 REPLIES 7
lala
Level VII

回复: Where is this font size set for JMP mapping?

  • Of course, it can not be adjusted individually, and the overall font of the drawing can be reduced.

Thanks Experts!

 

lala
Level VII

回复: Where is this font size set for JMP mapping?

I tried again. It could only be this.I thought it was the scope of the graph, so I didn't find it before.

 

Thanks!

jthi
Super User

Re: Where is this font size set for JMP mapping?

I think that is controlled by "Text" font size (like many other things).

 

Wish list item Right-click to change Group font and font size 

-Jarmo
lala
Level VII

Re: Where is this font size set for JMP mapping?

Yes, this is obviously not a good idea.

In order to reduce the font there, the result is that the font in many other places is reduced.

 

Thanks!

lala
Level VII

Re: Where is this font size set for JMP mapping?

How do I use the JSL implementation to change the Text font in Font in Preferences from 9 to 12?

 

Thanks Experts!

Set Preferences( Fonts( Text( Size( 12 ) ) ) );//?

2024-06-08_21-21-28.png

txnelson
Super User

Re: Where is this font size set for JMP mapping?

Use

Names Default To Here( 1 );
Get Preferences( );

and then in the log you will see the structure for the preference in question and you will then be able to use 

Preferences (	Fonts(
		English(
			Text Font( "Segoe UI", 9 )
                )
)
Jim
lala
Level VII

Re: Where is this font size set for JMP mapping?

Thank Jim!

2024-06-08_21-57-45.png