My question concerns removing the borders of column headers in JTable.
My class extends JTable and hence i managed to erase all the other borders by doing:
super.setShowHorizontalLines(false);
super.setShowVerticalLines(false);
But this doesn’t erase the borders in the column header. How to do this?
you have to extract
JLabelfromTableHeaderand set thereBorder, for example there are changedBordersonly for 1st.Column