cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
jaysiri
Level I

Tabbox

I am trying to create a tab box display with a bivariate plot. I have the script that already generates the bivariate fit.

what is the jsl code for creating tabbox?

1 REPLY 1
txnelson
Super User

Re: Tabbox

Go to:

     Help==>Scripting Index==>TabPageBox()

tabbox.GIF

Names Default To Here( 1 );
New Window( "Example",
	Tab Box(
		tp =
		Tab Page Box(
			"alpha",
			Panel Box( "panel", Text Box( "text" ) )
		),
		Tab Page Box(
			"beta",
			Popup Box( {"x", ex = 1, "y", ex = 2} )
		)
	)
);
Jim