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

Numbering the overlay plots

Hi All,

 

Is there a way I can number the overlay plots? I want something similar to the pic attached below

 

Jacksmith12_0-1615320457598.png

Thanks

10 REPLIES 10
txnelson
Super User

Re: Numbering the overlay plots

The Axis Label is being changed in the script, with the following code

For( i = 1, i <= 4, i++,
	Report( gb )[Text Edit Box( i + 3 )] << set text(
		Char( i ) || " " || Char( Report( gb )[Text Edit Box( i + 3 )] << get text )
	)
);

The basic structure for changing the value is:

Report( gb )[Text Edit Box( n )] << set text( "The text you want to be displayed");

Where "n" is the number of the Text Edit Box you want to change and the literal string in the set text() element is what it will be changed to.

The key to this, is the determination of what text edit box number you need.  If you right click on the gray triangle next to the Graph Builder outline box at the top of the display, and select 

     Edit=>Show Tree Structure

It will show the complete Tree Scructure

tree.PNG

Complete documentation on Display Trees is found in the Scripting Guide available in the JMP Documentation Library which is under the Help pull down menu.

Jim