Reputation: 41
I have on a panel a JTable and a JLabel. I set it a background image but I can't get rid of that grey background from the table and label.
How can I do it?
Upvotes: 0
Views: 740
Reputation: 735
Try doing .setOpaque(false); on your JTable and JLabel
.setOpaque(false);
Upvotes: 2