How to change the font size for strings in a JTable?
String columnNames[] = {"Time","MAP","ICP","CPP"};
String dataValues[][]= new String [countery]
table = new JTable( dataValues, columnNames );
I am working on a table and storing string values in dataValues. I am curious to know if there is anyway to increase the …