cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
wencun6
Level III

How to remove instead of hide of collapse a list box in graph?

what i want to achieve is to completely remove the list box for the spline fit legend showing below instead of just collpase or hide it. I am using JMP12. the problem I have is that with the collpasing the legend, it will still show up in saved interactive HTML output. So unless I can completely get rid of the box, there is no way I can completely get rid of it.

 

hiddenLegend.png

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to remove instead of hide of collapse a list box in graph?

If you delete the item from the Display Tree, it will not show up in the interactive HTML.

names default to here(1);
dt=current data table();
biv = dt << Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Spline( 1000, {Line Color( {213, 72, 87} )} )
);
report(biv)[PictureBox(2)]<<delete;

smoothing.PNG

I ran this in JMP 12

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How to remove instead of hide of collapse a list box in graph?

If you delete the item from the Display Tree, it will not show up in the interactive HTML.

names default to here(1);
dt=current data table();
biv = dt << Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Spline( 1000, {Line Color( {213, 72, 87} )} )
);
report(biv)[PictureBox(2)]<<delete;

smoothing.PNG

I ran this in JMP 12

Jim
wencun6
Level III

Re: How to remove instead of hide of collapse a list box in graph?

@txnelson many thanks. this worked.