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
UserID16644
Level V

How to remove border box frame properties

Hi all,

I need to delete the border box frame only from bivariate plot. How can I uncheck the frame properties using jsl to remove its frame without removing the line legends? Please help

Untitled.png

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to remove border box frame properties

Try setting sides to 0:

Names Default To Here(1);
New Window("Example",
	bb = Border Box(Left(10), Right(10), Top(10), Bottom(10), Sides(15), Text Box("Hello World!"))
);
wait(1);
bb << Sides(0);
-Jarmo

View solution in original post

3 REPLIES 3
jthi
Super User

Re: How to remove border box frame properties

Try getting the reference to the Border Box and then using << Visibility("Collapse") or << Visibility("Hidden") to that border boxes reference

-Jarmo
UserID16644
Level V

Re: How to remove border box frame properties

Hi, I only need the border line gone, not the whole border box

jthi
Super User

Re: How to remove border box frame properties

Try setting sides to 0:

Names Default To Here(1);
New Window("Example",
	bb = Border Box(Left(10), Right(10), Top(10), Bottom(10), Sides(15), Text Box("Hello World!"))
);
wait(1);
bb << Sides(0);
-Jarmo

Recommended Articles