cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.

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