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
0 Kudos

Provide a "Left Justify" option to the Graphic Text() function

What inspired this wish list request? 

When adding text to a display output or to a Graph Box() it is fairly easy to find the starting point on the graph where a text value is to be placed, however the Text() function only currently allows for Center Justify or Right Justify.  Currently, the positioning of text on the left edge of the display frame requires one to calculate the length of the text in characters and then to do some sort of estimating of how that length in characters relates to the X scaling of the graph

 

 

What is the improvement you would like to see? 

Allow:

Names Default To Here( 1 );
New Window( "Example",
	Graph Box(
		Text Color( "red" );
		Text( Left Justified, {50, 20}, "Left" );
	)
);

 

Why is this idea important? 

This would make adding text to output much cleaner to implement.