cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP Wish List

We want to hear your ideas for improving JMP software.

  1. Search: Please search for an existing idea first before submitting a new idea.
  2. Submit: Post your new idea using the Suggest an Idea button. Please submit one actionable idea per post rather than a single post with multiple ideas.
  3. Kudo & Comment Kudo ideas you like, and comment to add to an idea.
  4. Subscribe: Follow the status of ideas you like. Refer to status definitions to understand where an idea is in its lifecycle. (You are automatically subscribed to ideas you've submitted or commented on.)

We consider several factors when looking for what ideas to add to JMP. This includes what will have the greatest benefit to our customers based on scope, needs and current resources. Product ideas help us decide what features to work on next. Additionally, we often look to ideas for inspiration on how to add value to developments already in our pipeline or enhancements to new or existing features.

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

5 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);


hogi
Level XI

seems to be a duplicate of Right-click to change Group font and font size 

@Sarah-Sylvestre :

In JIRA - do the Kudos count separately or are they summed up?


How long do we have to live with the workarounds?
When will there be a font setting for X/ Y group and Wrap?