cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar

Font adjustment on Group X and Y

I am currently using JMP 16 and use the graph builder to group data for reporting and presentations.  When the data is subgrouped in the Group Y or Group X axes, the font size and type is locked.  This makes it difficult to read when reporting.

 

Thank you,

JasonD

4 Comments
Status changed to: Acknowledged

@JasonD - Thank you for your suggestion! We have captured your request and will take it under consideration.

Status changed to: Investigating
 
pattidimcneill
Level III

Yes - please my team and I have been tearing our hair out trying to figure out how to change the font for reporting - please escalate to your developers if possible!

As a workaround, here is a script that can be used to change this font temporarily for the current graph, and then later change it back to the original settings from the JMP Preferences.

 

Names Default to Here(1);

//Open Movies data
dt = Open( "$SAMPLE_DATA/Movies.jmp" );

//get current settings for font
prev = Get Preference(Text Font);

//set font for your graph
Set Preference( Text Font("Stencil", 22));

//execute graph script
dt << Graph Builder(
	Size( 1243, 646 ),
	Show Control Panel( 0 ),
	Variables( X( :Domestic $ ), Y( :Worldwide $ ), Group X( :Type ) ),
	Elements( Points( X, Y, Legend( 6 ) ), Smoother( X, Y, Legend( 7 ) ) )
);
//Wait three seconds to see the result
Wait(3);

//reset platform preferences to previous values
eval(prev);