How to hide this lines when row is selected in JTable
?
I set to false
: showVerticalLines
, showGrid
.
Also setBorder to zero does not help.
Any ideas??
Try to add this:
.setIntercellSpacing(new Dimension(0, 0));
Maybe this is the problem. It's hard to be sure, because I don't know your code.