cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

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