cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
] />

Discussions

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

Graph Builder Histogram Label Size

Hello!

 

Is there a way to change the size of the label on a histogram created in graph builder?  For example, with the "Little Pond" dataset, I created a histogram using column "Z" and then selected "percents".  I want to increase the size of the percents.  Circled below. 

 

Snag_23c8ecc7.png

Thanks!

4 REPLIES 4
jthi
Super User

Re: Graph Builder Histogram Label Size

I'm not sure you can modify those from graph builder. Some font preference might control those, but I'm not sure

jthi_0-1704907188369.png

 

Scripting is also one option, but depending on how you want the labels to work, it might not that that simple script.

-Jarmo
Kemable
Level I

Re: Graph Builder Histogram Label Size

Thanks for the reply!  I couldn't find the right preference to change that, but maybe I was looking in the wrong place.  

 

Thank you!

SED
SED
Level I

Re: Graph Builder Histogram Label Size

For future seekers, histogram counts use the "Small" font in the menu shown above.

hogi
Level XIII

Re: Graph Builder Histogram Label Size

Hi @Kemable , @SED , you can use set Font() to adjust the font size:

dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
Graph Builder(
	Variables( X( :name ), Y( :height ) ),
	Elements(
		Bar(
			X,
			Y,
			Label( "Label by Value" ),
		)
	),
	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox,
			{DispatchSeg(	BarSeg( 1 ),	Set Font( "", 30, "", 0 )	)}
		)
	)
);

Recommended Articles