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
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);
Try getting the reference to the Border Box and then using << Visibility("Collapse") or << Visibility("Hidden") to that border boxes reference
Hi, I only need the border line gone, not the whole border box
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);