cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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. :cathappy:

Recommended Articles